Home
last modified time | relevance | path

Searched refs:escape_opcode (Results 1 – 8 of 8) sorted by relevance

/dports/lang/v8/v8-9.6.180.12/src/diagnostics/x64/
H A Ddisasm-x64.cc484 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start);
485 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
1610 byte escape_opcode = *data; in FPUInstruction() local
1611 DCHECK_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction()
1615 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction()
1617 return MemoryFPUInstruction(escape_opcode, modrm_byte, data + 1); in FPUInstruction()
1621 int DisassemblerX64::MemoryFPUInstruction(int escape_opcode, int modrm_byte, in MemoryFPUInstruction() argument
1625 switch (escape_opcode) { in MemoryFPUInstruction()
1695 int DisassemblerX64::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument
1700 switch (escape_opcode) { in RegisterFPUInstruction()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/diagnostics/ia32/
H A Ddisasm-ia32.cc361 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start);
362 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
1291 byte escape_opcode = *data; in FPUInstruction() local
1292 DCHECK_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction()
1296 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction()
1298 return MemoryFPUInstruction(escape_opcode, modrm_byte, data + 1); in FPUInstruction()
1302 int DisassemblerIA32::MemoryFPUInstruction(int escape_opcode, int modrm_byte, in MemoryFPUInstruction() argument
1306 switch (escape_opcode) { in MemoryFPUInstruction()
1385 int DisassemblerIA32::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument
1390 switch (escape_opcode) { in RegisterFPUInstruction()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/diagnostics/x64/
H A Ddisasm-x64.cc460 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start);
461 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
1602 byte escape_opcode = *data; in FPUInstruction() local
1603 DCHECK_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction()
1607 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction()
1609 return MemoryFPUInstruction(escape_opcode, modrm_byte, data + 1); in FPUInstruction()
1613 int DisassemblerX64::MemoryFPUInstruction(int escape_opcode, int modrm_byte, in MemoryFPUInstruction() argument
1617 switch (escape_opcode) { in MemoryFPUInstruction()
1687 int DisassemblerX64::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument
1692 switch (escape_opcode) { in RegisterFPUInstruction()
/dports/www/node10/node-v10.24.1/deps/v8/src/ia32/
H A Ddisasm-ia32.cc389 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start);
390 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
1260 byte escape_opcode = *data; in FPUInstruction() local
1261 DCHECK_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction()
1265 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction()
1267 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1); in FPUInstruction()
1271 int DisassemblerIA32::MemoryFPUInstruction(int escape_opcode, in MemoryFPUInstruction() argument
1276 switch (escape_opcode) { in MemoryFPUInstruction()
1318 int DisassemblerIA32::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument
1323 switch (escape_opcode) { in RegisterFPUInstruction()
/dports/www/node10/node-v10.24.1/deps/v8/src/x64/
H A Ddisasm-x64.cc481 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start);
482 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
1455 byte escape_opcode = *data; in FPUInstruction() local
1456 DCHECK_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction()
1460 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction()
1462 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1); in FPUInstruction()
1466 int DisassemblerX64::MemoryFPUInstruction(int escape_opcode, in MemoryFPUInstruction() argument
1471 switch (escape_opcode) { in MemoryFPUInstruction()
1510 int DisassemblerX64::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument
1515 switch (escape_opcode) { in RegisterFPUInstruction()
/dports/lang/v8/v8-9.6.180.12/src/diagnostics/ia32/
H A Ddisasm-ia32.cc365 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start);
366 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
1442 byte escape_opcode = *data; in FPUInstruction() local
1443 DCHECK_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction()
1447 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction()
1449 return MemoryFPUInstruction(escape_opcode, modrm_byte, data + 1); in FPUInstruction()
1453 int DisassemblerIA32::MemoryFPUInstruction(int escape_opcode, int modrm_byte, in MemoryFPUInstruction() argument
1457 switch (escape_opcode) { in MemoryFPUInstruction()
1536 int DisassemblerIA32::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument
1541 switch (escape_opcode) { in RegisterFPUInstruction()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/diagnostics/x64/
H A Ddisasm-x64.cc454 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start);
455 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
1525 byte escape_opcode = *data; in FPUInstruction() local
1526 DCHECK_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction()
1530 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction()
1532 return MemoryFPUInstruction(escape_opcode, modrm_byte, data + 1); in FPUInstruction()
1536 int DisassemblerX64::MemoryFPUInstruction(int escape_opcode, int modrm_byte, in MemoryFPUInstruction() argument
1540 switch (escape_opcode) { in MemoryFPUInstruction()
1610 int DisassemblerX64::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument
1615 switch (escape_opcode) { in RegisterFPUInstruction()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/diagnostics/ia32/
H A Ddisasm-ia32.cc361 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start);
362 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
1321 byte escape_opcode = *data; in FPUInstruction() local
1322 DCHECK_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction()
1326 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction()
1328 return MemoryFPUInstruction(escape_opcode, modrm_byte, data + 1); in FPUInstruction()
1332 int DisassemblerIA32::MemoryFPUInstruction(int escape_opcode, int modrm_byte, in MemoryFPUInstruction() argument
1336 switch (escape_opcode) { in MemoryFPUInstruction()
1415 int DisassemblerIA32::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument
1420 switch (escape_opcode) { in RegisterFPUInstruction()