You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another exception from a different part of LuaJIT, specifically from the return hashgcref(t, key->gcr).
/* Hash an arbitrary key and return its anchor position in the hash table. */staticNode*hashkey(constGCtab*t, cTValue*key)
{
lj_assertX(!tvisint(key), "attempt to hash integer");
if (tvisstr(key))
returnhashstr(t, strV(key));
elseif (tvisnum(key))
returnhashnum(t, key);
elseif (tvisbool(key))
returnhashmask(t, boolV(key));
elsereturnhashgcref(t, key->gcr);
/* Only hash 32 bits of lightuserdata on a 64 bit CPU. Good enough? */
}
Log:
[+] start.c:104Started LuaOS[*] start.c:1052+2 = 4[*] start.c:106 Hello, World![*] start.c:108 Initialising GDT[+] gdt.c:42 Done[+] start.c:110 Done[*] start.c:112 Initialising IDT[+] start.c:114 Done[*] start.c:117 Initialising memory[*] start.c:119 Magazines...[+] start.c:121 Done[*] start.c:123 Kernel memory allocator...[+] start.c:125 Done[+] start.c:127 Done[*] start.c:137 Initialising APIC[*] rsdp.c:42 XSDT not supported on this machine; using RSDT[*] start.c:147 Found entry with ID 0[+] start.c:151 Found LAPICatcore 0 (address: 0xFFFF80007FFE223A)[*] start.c:152 Processor ID: 0[*] start.c:153 APIC ID: 0[*] start.c:154Flags: 1[*] start.c:147 Found entry with ID 0[+] start.c:151 Found LAPICatcore 1 (address: 0xFFFF80007FFE2242)[*] start.c:152 Processor ID: 1[*] start.c:153 APIC ID: 1[*] start.c:154Flags: 1[*] start.c:147 Found entry with ID 1[*] start.c:147 Found entry with ID 2[*] start.c:147 Found entry with ID 2[*] start.c:147 Found entry with ID 2[*] start.c:147 Found entry with ID 2[*] start.c:147 Found entry with ID 2[*] start.c:147 Found entry with ID 4[+] start.c:159 Done[*] start.c:161 Initalising LAPIC[*] start.c:163 LAPIC base: 0xFFFF8000FEE00000[+] start.c:164 Done[*] start.c:171 Initialising scheduler[+] start.c:173 Done[*] idt.c:63CPUInfo[*] idt.c:64RAX: 0x0000000000000000 | RBX: 0x0000700000454EA0 | RCX: 0x0000700000457A00 | RDX: 0xFFFF80007FF683A8[*] idt.c:65RSI: 0xFFFF80007FF683A8 | RDI: 0x0000700000457A00 | RSP: 0xFFFF80007FF68338 | RBP: 0xFFFF80007FF68340[*] idt.c:66R8: 0x0000000000000000 | R9: 0x0000000000000000 | R10: 0x0000000000000008 | R11: 0xFFFFFFFFFFFFFFF7[*] idt.c:67R12: 0xFFFF80007F892000 | R13: 0xFFFFFFFF8005190F | R14: 0x0000700000455328 | R15: 0x0000000000000000[*] idt.c:68RIP: 0xFFFFFFFF80043C3E | RFL: 0x0000000000000202 | ERR: 0x0000000000000000 | ISR: 0x000000000000000E[-] idt.c:80 unexpected interrupt!
Offending code, specifically the
if
statmentLog:
Possible causes:
The text was updated successfully, but these errors were encountered: