From b82336e1765e937d28e6ae36aacf62d9e2418f96 Mon Sep 17 00:00:00 2001 From: Roy Qu Date: Sat, 4 Mar 2023 12:47:49 +0800 Subject: [PATCH] - enhancement: Add X86_64 AVX/AVX instruction descriptions to asm syntaxer. - enhancement: Update to the newest x86 Assembly manual. --- RedPandaIDE/RedPandaIDE.pro | 2 +- RedPandaIDE/debugger.cpp | 31 +- RedPandaIDE/mainwindow.cpp | 18 +- RedPandaIDE/mainwindow.h | 2 + RedPandaIDE/mainwindow.ui | 7 +- RedPandaIDE/translations/RedPandaIDE_pt_BR.ts | 22 +- RedPandaIDE/translations/RedPandaIDE_zh_CN.ts | 729 +++++---- RedPandaIDE/translations/RedPandaIDE_zh_TW.ts | 22 +- Red_Panda_CPP.pro | 2 +- libs/qsynedit/qsynedit/syntaxer/asm.cpp | 425 +++++ libs/qsynedit/qsynedit_zh_CN.ts | 1428 +++++++++++++++++ 11 files changed, 2321 insertions(+), 367 deletions(-) diff --git a/RedPandaIDE/RedPandaIDE.pro b/RedPandaIDE/RedPandaIDE.pro index c201d314..bd974ac9 100644 --- a/RedPandaIDE/RedPandaIDE.pro +++ b/RedPandaIDE/RedPandaIDE.pro @@ -8,7 +8,7 @@ isEmpty(APP_NAME) { } isEmpty(APP_VERSION) { - APP_VERSION = 2.16 + APP_VERSION = 2.17 } contains(QMAKE_HOST.arch, x86_64):{ diff --git a/RedPandaIDE/debugger.cpp b/RedPandaIDE/debugger.cpp index e31849fe..a7ae5324 100644 --- a/RedPandaIDE/debugger.cpp +++ b/RedPandaIDE/debugger.cpp @@ -2814,6 +2814,22 @@ RegisterModel::RegisterModel(QObject *parent):QAbstractTableModel(parent) mRegisterDescriptions.insert("xmm14",tr("128-bit")+" "+"XMM"); mRegisterDescriptions.insert("xmm15",tr("128-bit")+" "+"XMM"); + mRegisterDescriptions.insert("ymm0",tr("256-bit")+" "+"YMM"); + mRegisterDescriptions.insert("ymm1",tr("256-bit")+" "+"YMM"); + mRegisterDescriptions.insert("ymm2",tr("256-bit")+" "+"YMM"); + mRegisterDescriptions.insert("ymm3",tr("256-bit")+" "+"YMM"); + mRegisterDescriptions.insert("ymm4",tr("256-bit")+" "+"YMM"); + mRegisterDescriptions.insert("ymm5",tr("256-bit")+" "+"YMM"); + mRegisterDescriptions.insert("ymm6",tr("256-bit")+" "+"YMM"); + mRegisterDescriptions.insert("ymm7",tr("256-bit")+" "+"YMM"); + mRegisterDescriptions.insert("ymm8",tr("256-bit")+" "+"YMM"); + mRegisterDescriptions.insert("ymm9",tr("256-bit")+" "+"YMM"); + mRegisterDescriptions.insert("ymm11",tr("256-bit")+" "+"YMM"); + mRegisterDescriptions.insert("ymm12",tr("256-bit")+" "+"YMM"); + mRegisterDescriptions.insert("ymm13",tr("256-bit")+" "+"YMM"); + mRegisterDescriptions.insert("ymm14",tr("256-bit")+" "+"YMM"); + mRegisterDescriptions.insert("ymm15",tr("256-bit")+" "+"YMM"); + mRegisterDescriptions.insert("mxscr",tr("SSE status and control")); #endif @@ -3151,11 +3167,11 @@ QVariant MemoryModel::data(const QModelIndex &index, int role) const } else if (role == Qt::ToolTipRole) { if (coldatas.count()) { QString s =tr("dec: %1").arg(line->datas[col]) - +"
" - +tr("hex: %1").arg(line->datas[col],2,16,QChar('0')) - +"
" - +tr("bin: %1").arg(line->datas[col],8,2,QChar('0')) - +"
"; + +"
" + +tr("oct: %1").arg(line->datas[col],0,8) + +"
" + +tr("bin: %1").arg(line->datas[col],8,2,QChar('0')) + +"
"; QString chVal; if (line->datas[col]==0) { chVal="\\0"; @@ -3165,11 +3181,12 @@ QVariant MemoryModel::data(const QModelIndex &index, int role) const chVal="\\t"; } else if (line->datas[col]=='\r') { chVal="\\r"; - } else if (line->datas[col]>'\n' && line->datas[col]<127) { + } else if (line->datas[col]>=' ' && line->datas[col]<127) { chVal=QChar(line->datas[col]); } if (!chVal.isEmpty()) { - s+=tr("ascii: \'%1\'").arg(chVal); + s+=tr("ascii: \'%1\'").arg(chVal) + +"
"; } return s; } diff --git a/RedPandaIDE/mainwindow.cpp b/RedPandaIDE/mainwindow.cpp index b1141737..cad25930 100644 --- a/RedPandaIDE/mainwindow.cpp +++ b/RedPandaIDE/mainwindow.cpp @@ -217,6 +217,7 @@ MainWindow::MainWindow(QWidget *parent) mMenuNew->setTitle(tr("New")); mMenuNew->addAction(ui->actionNew); mMenuNew->addAction(ui->actionNew_GAS_File); + mMenuNew->addAction(ui->actionNew_Text_File); mMenuNew->addAction(ui->actionNew_Project); mMenuNew->addSeparator(); mMenuNew->addAction(ui->actionNew_Template); @@ -9614,7 +9615,7 @@ void MainWindow::on_actionGNU_Assembler_Manual_triggered() void MainWindow::on_actionx86_Assembly_Language_Reference_Manual_triggered() { - QDesktopServices::openUrl(QUrl("https://docs.oracle.com/cd/E19120-01/open.solaris/817-5477/index.html")); + QDesktopServices::openUrl(QUrl("https://docs.oracle.com/cd/E53394_01/html/E54851/index.html")); } @@ -9639,3 +9640,18 @@ void MainWindow::on_actionAdd_Watchpoint_triggered() mDebugger->addWatchpoint(s); } + +void MainWindow::on_actionNew_Text_File_triggered() +{ + if (mProject) { + if (QMessageBox::question(this, + tr("New Project File?"), + tr("Do you want to add the new file to the project?"), + QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes) { + newProjectUnitFile("txt"); + return; + } + } + newEditor("txt"); +} + diff --git a/RedPandaIDE/mainwindow.h b/RedPandaIDE/mainwindow.h index 53f27538..805b340b 100644 --- a/RedPandaIDE/mainwindow.h +++ b/RedPandaIDE/mainwindow.h @@ -800,6 +800,8 @@ private slots: void on_actionAdd_Watchpoint_triggered(); + void on_actionNew_Text_File_triggered(); + private: Ui::MainWindow *ui; bool mFullInitialized; diff --git a/RedPandaIDE/mainwindow.ui b/RedPandaIDE/mainwindow.ui index 028fb4d7..c125ea29 100644 --- a/RedPandaIDE/mainwindow.ui +++ b/RedPandaIDE/mainwindow.ui @@ -3292,7 +3292,7 @@ Generate Assembly - Ctrl+F9 + Ctrl+F12 @@ -3346,6 +3346,11 @@ Add a watchpoint that's triggered when it's modified. + + + New Text File + + diff --git a/RedPandaIDE/translations/RedPandaIDE_pt_BR.ts b/RedPandaIDE/translations/RedPandaIDE_pt_BR.ts index 683ca38e..01de805f 100644 --- a/RedPandaIDE/translations/RedPandaIDE_pt_BR.ts +++ b/RedPandaIDE/translations/RedPandaIDE_pt_BR.ts @@ -5111,25 +5111,33 @@ New value: %1 + + Ctrl+F12 + Ctrl+F12 + + + New Text File + + MemoryModel + + ascii: '%1' + + dec: %1 - hex: %1 + oct: %1 bin: %1 - - ascii: '%1' - - NewClassDialog @@ -6804,6 +6812,10 @@ Stack segment selector + + 256-bit + + ReplaceDialog diff --git a/RedPandaIDE/translations/RedPandaIDE_zh_CN.ts b/RedPandaIDE/translations/RedPandaIDE_zh_CN.ts index 69fffbcd..f6303513 100644 --- a/RedPandaIDE/translations/RedPandaIDE_zh_CN.ts +++ b/RedPandaIDE/translations/RedPandaIDE_zh_CN.ts @@ -4238,18 +4238,18 @@ Are you really want to continue? MainWindow - + Red Panda C++ 小熊猫C++ - - - - - + + + + + Issues 编译器 @@ -4323,7 +4323,7 @@ Are you really want to continue? - + Debug Console 调试主控台 @@ -4533,9 +4533,9 @@ Are you really want to continue? - - - + + + Copy 复制 @@ -4546,7 +4546,7 @@ Are you really want to continue? - + Paste 粘贴 @@ -4557,8 +4557,8 @@ Are you really want to continue? - - + + Select All 选择全部 @@ -4681,38 +4681,38 @@ Are you really want to continue? - - + + New Problem Set 新建试题集 - + Add Problem 添加试题 - + Remove Problem 删除试题 - - + + Save Problem Set 保存试题集 - - + + Load Problem Set 载入试题集 @@ -4760,7 +4760,7 @@ Are you really want to continue? - + Remove Problem Case Remove Problem Set 删除试题集 @@ -4768,21 +4768,21 @@ Are you really want to continue? - + Open Anwser Source File 打开答案源代码文件 - + Run All Cases Run Current Case 运行所有案例 - + Problem Cases Validation Options 测试案例验证选项 @@ -4842,15 +4842,15 @@ Are you really want to continue? - - + + Import FPS Problem Set 导入FPS试题集 - - + + Export FPS Problem Set 导出FPS试题集 @@ -5097,7 +5097,7 @@ Are you really want to continue? - + Clear all breakpoints 删除所有断点 @@ -5172,6 +5172,11 @@ Are you really want to continue? New Project File 新建项目文件 + + + Ctrl+F12 + Ctrl+F12 + F1 @@ -5207,6 +5212,11 @@ Are you really want to continue? Add a watchpoint that's triggered when it's modified. 添加一个变量断点。当该变量的值被改动时程序暂停。 + + + New Text File + 新建文本文件 + Move Selection Up @@ -5249,7 +5259,6 @@ Are you really want to continue? - Ctrl+F9 Ctrl+F9 @@ -5348,7 +5357,7 @@ Are you really want to continue? 保存为模板... - + New File 新建文件 @@ -5389,7 +5398,7 @@ Are you really want to continue? - + Rename Symbol 重命名符号 @@ -5410,13 +5419,13 @@ Are you really want to continue? - + Export As RTF 导出为RTF - + Export As HTML 导出为HTML @@ -5685,42 +5694,42 @@ Are you really want to continue? 运行参数... - + File Encoding 文件编码 - + Recent Files 文件历史 - - - - - - + + + + + + Debugging 正在调试 - - - - - - + + + + + + Running 正在运行 - - - - - - + + + + + + Compiling 正在编译 @@ -5734,17 +5743,17 @@ Are you really want to continue? 行: %1 列: %2 已选择 :%3 总行数: %4 总长度: %5 - + Read Only 只读 - + Insert 插入 - + Overwrite 覆写 @@ -5761,7 +5770,7 @@ Are you really want to continue? 确认 - + Source file is not compiled. 源文件尚未编译。 @@ -5777,45 +5786,45 @@ Are you really want to continue? Recompile now? 重新编译? - - - - - - Wrong Compiler Settings - 错误的编译器设置 - + Wrong Compiler Settings + 错误的编译器设置 + + + + + + Compiler is set not to generate executable. 编译器被设置为不生成可执行文件。 - - + + We need the executabe to run problem case. 我们需要可执行文件来运行试题案例。 - + No compiler set 无编译器设置 - + No compiler set is configured. 没有配置编译器设置。 - + Can't start debugging. 无法启动调试器 - + Enable debugging 启用调试参数 @@ -5832,33 +5841,33 @@ Are you really want to continue? 项目尚未构建。是否构建? - + Host applcation missing 宿主程序不存在 - + DLL project needs a host application to run. 动态链接库(DLL)需要一个宿主程序来运行。 - + But it's missing. 但它不存在。 - + Host application not exists 宿主程序不存在 - + Host application file '%1' doesn't exist. 宿主程序'%1'不存在。 - - + + Please correct this before start debugging 请在调试前改正设置。 @@ -5867,8 +5876,8 @@ Are you really want to continue? 重新编译? - - + + Save last open info error 保存上次打开信息失败 @@ -5877,60 +5886,60 @@ Are you really want to continue? 无法删除旧上次打开信息文件'%1' - + Can't save last open info file '%1' 无法保存上次打开信息文件'%1' - - + + Load last open info error 载入上次打开信息失败 - - + + Can't load last open info file '%1' 无法载入上次打开信息文件'%1' - + Open Source File 打开源代码文件 - - + + Batch Set Cases 批量设置案例 - + Show detail debug logs 显示详细调试器日志 - + Copy all 全部复制 - + Go to Line 跳转到行 - + Line - + Template Exists 模板已存在 - + Template %1 already exists. Do you want to overwrite? 模板%1已存在。是否覆盖? @@ -5938,25 +5947,25 @@ Are you really want to continue? - - - + + + Clear 清除 - + Export 导出 - + Insert Snippet 插入代码段 - - + + Problem Set %1 试题集%1 @@ -5985,56 +5994,56 @@ Are you really want to continue? 项目已经被修改过,是否需要重新构建? - + Auto Save Error 自动保存出错 - + Auto save "%1" to "%2" failed:%3 自动保存"%1"到"%2"失败:%3 - + Properties... 试题属性... - + Set Problem Set Name 设置试题集名称 - + Problem Set Name: 试题集名称: - + Remove 删除 - + Remove All Bookmarks 删除全部书签 - + Modify Description 修改描述 - - - - - Bookmark Description - 书签描述 - + Bookmark Description + 书签描述 + + + + + Description: 描述: @@ -6043,65 +6052,65 @@ Are you really want to continue? 在调试主控台中显示调试器输出 - + Remove this search 清除这次搜索 - + Clear all searches 删除所有搜索 - + Breakpoint condition... 断点条件... - + Break point condition 断点条件 - + Enter the condition of the breakpoint: 输入当前断点的生效条件: - + Remove All Breakpoints Remove all breakpoints 删除所有断点 - + Remove Breakpoint 删除当前断点 - + Rename File 重命名文件 - - + + Add Folder 添加文件夹 - - + + New folder 新文件夹 - + Folder name: 文件夹: - + Rename Folder 重命名 @@ -6114,232 +6123,232 @@ Are you really want to continue? 要现在去修改设置吗? - + Rename Problem Set 修改试题集名称 - + Can't open last open information file '%1' for write! 无法写入配置文件'%1'。 - + Rename Problem 修改试题名称 - + Line: %1 Col: %2 Lines: %3 行: %1 列: %2 总行数: %3 - + Correct compiler setting 改正编译器设置 - - + + You are using a Debug compiler set with wrong compile/link settings: 您使用的Debug编译器配置集中存在错误的“编译/链接”选项设置: - - + + - "Generate debug info (-g3)" should be turned on - 应勾选"生成调试信息(-g3)"选项 - + - "Strip executable (-s)" should be turned off - 应取消"剥除附加信息(-s)"选项 - - + + Do you want to correct it now? 是否现在去改正? - - + + Can't Debug 无法调试 - - + + Your compiler set's "Strip executable (-s)" options is turnned on 您的编译器配置集中的“剥除附加信息(-s)”选项被勾选了。 - - + + Please correct it, recompile and retry debug. 请取消该设置,重新编译然后重新启动调试。 - + Goto Url 跳转到试题网址 - + Add Problem Case 添加试题案例 - + Run Current Case 运行当前案例 - + Remove Folder 删除文件夹 - + Switch to normal view 切换为普通视图 - + Switch to custom view 切换为自定义视图 - + Sort By Type 按类型排序 - + Sort alphabetically 按名称排序 - + Show inherited members 显示继承的成员 - + Goto declaration 跳转到声明处 - + Goto definition 跳转到定义处 - + In current file 仅当前文件 - + In current project 整个项目 - - + + New Folder 新建文件夹 - + Rename 重命名 - - - - + + + + Delete 删除 - + Open in Editor 在编辑器中打开 - + Open in External Program 使用外部程序打开 - + Open in Terminal 在终端中打开 - + Open in Windows Explorer 在Windows浏览器中打开 - + Character sets 字符集 - + Convert to %1 转换为%1编码 - + Newline 换行符 - + %1 files autosaved 已自动保存%1个文件 - + Set answer to... 设置答案源代码... - + select other file... 选择其他文件... - + Select Answer Source File 选择答案源代码文件 - + Watchpoint hitted 变量断点被触发 - + Value of "%1" has changed: "%1"的值发生了变化: - + New value: %1 新值: %1 - + Watchpoint variable name 被监控的变量 - + Stop execution when the following variable is modified (it must be visible from the currect scope): 当下面的变量被修改时暂停执行(该变量必须可以从当前程序处访问): @@ -6348,17 +6357,17 @@ Are you really want to continue? 中止 - + FPS Problem Set Files (*.fps;*.xml) FPS试题集文件(*.fps;*.xml) - + FPS Problem Set Files (*.fps) FPS试题集文件(*.fps) - + Export Error 导出时出错 @@ -6368,7 +6377,7 @@ Are you really want to continue? C/C++源代码文件 (*.c *.cpp *.cc *.cxx) - + New Folder %1 新建文件夹%1 @@ -6381,12 +6390,12 @@ Are you really want to continue? 无标题%1 - + Do you really want to delete %1? 你真的要删除%1吗? - + Do you really want to delete %1 files? 你真的要删除%1个文件吗? @@ -6399,7 +6408,7 @@ Are you really want to continue? 变量"%1"有改动: - + Old value: %1 旧值: %1 @@ -6408,60 +6417,62 @@ Are you really want to continue? 新值: %1 - + Save project 保存项目 - + The project '%1' has modifications. 项目'%1'有改动。 - - + + Do you want to save it? 需要保存吗? - - + + File Changed 文件已发生变化 - - + + + New Project File? 新建项目文件? - - + + + Do you want to add the new file to the project? 您是否要将新建的文件加入项目? - - - - + + + + Save Error 保存失败 - + Change Project Compiler Set 改变项目编译器配置集 - + Change the project's compiler set will lose all custom compiler set options. 改变项目的编译器配置集会导致所有的自定义编译器选项被重置。 - - + + Do you really want to do that? 你真的想要那么做吗? @@ -6470,12 +6481,12 @@ Are you really want to continue? 批量设置案例 - + Choose input files 选择输入数据文件 - + Input data files (*.in) 输入数据文件 (*.in) @@ -6484,78 +6495,78 @@ Are you really want to continue? 无标题%1 - + Modify Watch 修改监视表达式 - + Watch Expression 监视表达式 - + Do you really want to clear all breakpoints in this file? 您真的要清除该文件的所有断点吗? - + New project 新建项目 - + Close %1 and start new project? 关闭'%1'以打开新项目? - + Folder not exist 文件夹不存在 - + Folder '%1' doesn't exist. Create it now? 文件夹'%1'不存在。是否创建? - + Can't create folder 无法创建文件夹 - + Failed to create folder '%1'. 创建文件夹'%1'失败。 - + Save new project as - + Folder %1 is not empty. 文件夹%1不是空的。 - + Do you really want to delete it? 你真的要删除它吗? - + Change working folder 改变工作文件夹 - + File '%1' is not in the current working folder. File '%1' is not in the current working folder 文件'%1'不在当前工作文件夹中。 - + Do you want to change working folder to '%1'? 是否将工作文件夹改设为'%1'? @@ -6564,28 +6575,28 @@ Are you really want to continue? 正在删除试题... - + Can't Commit 无法提交 - + Git needs user info to commit. Git需要用信息进行提交。 - + Choose Input Data File 选择输入数据文件 - - + + All files (*.*) 所有文件 (*.*) - + Choose Expected Output Data File Choose Expected Input Data File 选择期望输出文件 @@ -6597,59 +6608,59 @@ Are you really want to continue? - + Choose Working Folder 选择工作文件夹 - - + + Header Exists 头文件已存在 - - + + Header file "%1" already exists! 头文件"%1"已存在! - + Source Exists 源文件已存在! - + Source file "%1" already exists! 源文件"%1"已存在! - + Can't commit! 无法提交! - + The following files are in conflicting: 下列文件处于冲突状态,请解决后重新添加和提交: - + Commit Message 提交信息 - + Commit Message: 提交信息: - + Commit Failed 提交失败 - + Commit message shouldn't be empty! 提交信息不能为空! @@ -6658,22 +6669,22 @@ Are you really want to continue? 小熊猫Dev-C++项目文件 (*.dev) - + New project fail 新建项目失败 - + Can't assign project template 无法使用模板创建项目 - + Remove file 删除文件 - + Remove the file from disk? 同时从硬盘上删除文件? @@ -6682,27 +6693,27 @@ Are you really want to continue? 无标题 - + New Project File Name 新的项目文件名 - + File Name: 文件名: - + File Already Exists! 文件已存在! - + File '%1' already exists! 文件'%1'已经存在! - + Add to project 添加到项目 @@ -6719,27 +6730,27 @@ Are you really want to continue? 请在工具栏中选择Debug编译器配置集,或者在“编译器配置集”设置的“编译/链接选项”页中<b>启用</b>“生成调试信息(-g3)”、<b>禁用</b>“剥除附件信息(-3)”。 - + C/C++ Source Files (*.c *.cpp *.cc *.cxx) C/C++源代码文件 (*.c *.cpp *.cc *.cxx) - + This operation will remove all cases for the current problem. 本操作会删除此试题的所有案例。 - + Debug Failed 调试失败 - + The executable doesn't have symbol table, and can't be debugged. 可执行文件中没有符号表信息,无法调试。 - + Please turn off your compiler set's "Strip executable (-s)" option, recompile and retry debug. 请在选项对话框的编译器配置集页中取消“剥除附加信息(-s)”选项,重新编译后再调试。 @@ -6760,134 +6771,134 @@ Are you really want to continue? 您也可以删除所有断点,打开“CPU信息窗口”,然后调试汇编代码。 - + Failed to generate the executable. 未能生成可执行文件。 - + Please check detail info in "Tools Output" panel. 请查看“工具输出”面板中的详细信息。 - + Red Panda C++ project file (*.dev) 小熊猫C++项目文件(*.dev) - + Rename Error 重命名出错 - + Symbol '%1' is defined in system header. 符号'%1'在系统头文件中定义,无法修改。 - + New Name 新名称 - - - - + + + + Replace Error 替换出错 - + Can't open file '%1' for replace! 无法打开文件'%1'进行替换! - + Contents has changed since last search! 内容和上次查找时不一致。 - + Rich Text Format Files (*.rtf) RTF格式文件 (*.rtf) - + HTML Files (*.html) HTML文件 (*.html) - + The current problem set is not empty. 当前的试题集不是空的。 - + Problem %1 试题%1 - - + + Problem Set Files (*.pbs) 试题集文件 (*.pbs) - - + + Load Error 载入失败 - - + + Problem Case %1 试题案例%1 - - - - - - - - - - - - - + + + + + + + + + + + + + Error 错误 - + Recent Projects 项目历史 - + Load Theme Error 载入主题失败 - - + + Clear History 清除历史 - - + + The generated executable doesn't have symbol table, and can't be debugged. 编译生成的可执行文件中没有符号表,无法被调试。 - - + + Version Control 版本控制 @@ -6896,80 +6907,80 @@ Are you really want to continue? 请在工具栏中选用Debug编译器配置集,或者在选项对话框的编辑器配置集页中勾选“生成调试信息(-g3)"选项。 - + File '%1' was changed. 磁盘文件'%1'已被修改。 - + Reload its content from disk? 是否重新读取它的内容? - + File '%1' was removed. 磁盘文件'%1'已被删除。 - + Keep it open? 是否保持它在小熊猫C++中打开的编辑窗口? - + Open 打开 - - + + Compile Failed 编译失败 - + Run Failed 运行失败 - - - - - - Confirm Convertion - 确认转换 - + Confirm Convertion + 确认转换 + + + + + + The editing file will be saved using %1 encoding. <br />This operation can't be reverted. <br />Are you sure to continue? 当前编辑器中的文件将会使用%1编码保存。<br />这项操作无法被撤回。<br />你确定要继续吗? - + New Watch Expression 新监视表达式 - + Enter Watch Expression (it is recommended to use 'this->' for class members): 输入监视表达式 - + Parsing file %1 of %2: "%3" (%1/%2)正在解析文件"%3" - - + + Done parsing %1 files in %2 seconds 完成%1个文件的解析,用时%2秒 - + (%1 files per second) (每秒%1个文件) @@ -6977,22 +6988,26 @@ Are you really want to continue? MemoryModel - + dec: %1 十进制: %1 - - hex: %1 - 16进制: %1 + + oct: %1 + 八进制: %1 - + hex: %1 + 16进制: %1 + + + bin: %1 二进制: %1 - + ascii: '%1' ASCII字符: '%1' @@ -7344,6 +7359,7 @@ Are you really want to continue? + sec @@ -7356,12 +7372,14 @@ Are you really want to continue? + KB KB + MB MB @@ -8278,13 +8296,13 @@ Are you really want to continue? QObject - + Save 保存 - + Save changes to %1? 将修改保存到"%1"? @@ -9320,16 +9338,35 @@ Are you really want to continue? + + + + + + + + + + + + + + + 256-bit + 256位 + + + SSE status and control SSE状态和控制 - + Register 寄存器 - + Value @@ -9990,18 +10027,18 @@ Are you really want to continue? 性能 - - - + + + Compiler Set 编译器配置集 - - - + + + Compiler @@ -10013,7 +10050,7 @@ Are you really want to continue? 自动链接 - + @@ -10089,15 +10126,15 @@ Are you really want to continue? 杂项 - - + + Program Runner 程序运行 - + Problem Set 试题集 diff --git a/RedPandaIDE/translations/RedPandaIDE_zh_TW.ts b/RedPandaIDE/translations/RedPandaIDE_zh_TW.ts index ced2466f..710f0e02 100644 --- a/RedPandaIDE/translations/RedPandaIDE_zh_TW.ts +++ b/RedPandaIDE/translations/RedPandaIDE_zh_TW.ts @@ -4864,25 +4864,33 @@ New value: %1 + + Ctrl+F12 + + + + New Text File + + MemoryModel + + ascii: '%1' + + dec: %1 - hex: %1 + oct: %1 bin: %1 - - ascii: '%1' - - NewClassDialog @@ -6385,6 +6393,10 @@ Stack segment selector + + 256-bit + + SearchDialog diff --git a/Red_Panda_CPP.pro b/Red_Panda_CPP.pro index c9abfe8c..1621ba6d 100644 --- a/Red_Panda_CPP.pro +++ b/Red_Panda_CPP.pro @@ -14,7 +14,7 @@ qsynedit.subdir = libs/qsynedit APP_NAME = RedPandaCPP -APP_VERSION = 2.16 +APP_VERSION = 2.17 # Add the dependencies so that the RedPandaIDE project can add the depended programs # into the main app bundle diff --git a/libs/qsynedit/qsynedit/syntaxer/asm.cpp b/libs/qsynedit/qsynedit/syntaxer/asm.cpp index 6c0f04c9..28b1a121 100644 --- a/libs/qsynedit/qsynedit/syntaxer/asm.cpp +++ b/libs/qsynedit/qsynedit/syntaxer/asm.cpp @@ -1138,6 +1138,431 @@ void ASMSyntaxer::initData() Instructions.insert("movnti",QObject::tr("non-temporal store of a doubleword from a general-purpose register into memory.")); Instructions.insert("movntpd",QObject::tr("non-temporal store of two packed double-precision floating-point values from an xmm register into memory.")); Instructions.insert("pause",QObject::tr("improves the performance of spin-wait loops.")); + + //AVX/AVX2 Instructions + Instructions.insert("vaddpd",QObject::tr("Add Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vaddps",QObject::tr("Add Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vaddsd",QObject::tr("Add Scalar Double-Precision Floating-Point Values.")); + Instructions.insert("vaddss",QObject::tr("Add Scalar Single-Precision Floating-Point Values.")); + Instructions.insert("vaddsubpd",QObject::tr("Packed Double-FP Add/Subtract.")); + Instructions.insert("vaddsubps",QObject::tr("Packed Single-FP Add/Subtract.")); + Instructions.insert("vandnpd",QObject::tr("Bitwise Logical AND NOT of Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vandnps",QObject::tr("Bitwise Logical AND NOT of Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vandpd",QObject::tr("Bitwise Logical AND of Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vandps",QObject::tr("Bitwise Logical AND of Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vblendpd",QObject::tr("Blend Packed Double Precision Floating-Point Values.")); + Instructions.insert("vblendps",QObject::tr("Blend Packed Single Precision Floating-Point Values.")); + Instructions.insert("vblendvpd",QObject::tr("Variable Blend Packed Double Precision Floating-Point Values.")); + Instructions.insert("vblendvps",QObject::tr("Variable Blend Packed Single Precision Floating-Point Values.")); + Instructions.insert("vcmpeq_ospd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpeq_uqpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpeq_uspd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpeqpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpfalse_ospd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpfalsepd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpge_oqpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpgepd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpgt_oqpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpgtpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmple_oqpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmplepd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmplt_oqpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpltpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpneq_oqpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpneq_ospd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpneq_uspd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpneqpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpnge_uqpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpngepd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpngt_uqpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpngtpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpnle_uqpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpnlepd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpnlt_uqpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpnltpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpord_spd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpordpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmppd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmptrue_uspd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmptruepd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpunord_spd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpunordpd",QObject::tr("Compare Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcmpeq_osps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpeq_uqps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpeq_usps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpeqps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpfalse_osps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpfalseps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpge_oqps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpgeps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpgt_oqps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpgtps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmple_oqps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpleps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmplt_oqps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpltps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpneq_oqps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpneq_osps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpneq_usps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpneqps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpnge_uqps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpngeps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpngt_uqps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpngtps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpnle_uqps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpnleps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpnlt_uqps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpnltps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpord_sps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpordps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmptrue_usps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmptrueps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpunord_sps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpunordps",QObject::tr("Compare Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcmpeq_ossd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpeq_uqsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpeq_ussd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpeqsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpfalse_ossd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpfalsesd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpge_oqsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpgesd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpgt_oqsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpgtsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmple_oqsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmplesd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmplt_oqsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpltsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpneq_oqsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpneq_ossd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpneq_ussd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpneqsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpnge_uqsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpngesd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpngt_uqsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpngtsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpnle_uqsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpnlesd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpnlt_uqsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpnltsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpord_ssd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpordsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmptrue_ussd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmptruesd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpunord_ssd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpunordsd",QObject::tr("Compare Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcmpeq_osss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpeq_uqss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpeq_usss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpeqss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpfalse_osss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpfalsess",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpge_oqss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpgess",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpgt_oqss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpgtss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmple_oqss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpless",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmplt_oqss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpltss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpneq_oqss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpneq_osss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpneq_usss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpneqss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpnge_uqss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpngess",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpngt_uqss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpngtss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpnle_uqss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpnless",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpnlt_uqss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpnltss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpord_sss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpordss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmptrue_usss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmptruess",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpunord_sss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcmpunordss",QObject::tr("Compare Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcomisd",QObject::tr("Compare Scalar Ordered Double-Precision Floating-Point Values and Set EFLAGS.")); + Instructions.insert("vcomiss",QObject::tr("Compare Scalar Ordered Single-Precision Floating-Point Values and Set EFLAGS.")); + Instructions.insert("vcvtdq2pd",QObject::tr("Convert Packed Doubleword Integers to Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vcvtdq2ps",QObject::tr("Convert Packed Doubleword Integers to Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcvtpd2dq",QObject::tr("Convert Packed Double-Precision Floating-Point Values to Packed Doubleword Integers.")); + Instructions.insert("vcvtpd2dqx",QObject::tr("Convert Packed Double-Precision Floating-Point Values to Packed Doubleword Integers.")); + Instructions.insert("vcvtpd2dqy",QObject::tr("Convert Packed Double-Precision Floating-Point Values to Packed Doubleword Integers.")); + Instructions.insert("vcvtpd2ps",QObject::tr("Convert Packed Double-Precision Floating-Point Values to Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcvtpd2psx",QObject::tr("Convert Packed Double-Precision Floating-Point Values to Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcvtpd2psy",QObject::tr("Convert Packed Double-Precision Floating-Point Values to Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vcvtps2dq",QObject::tr("Convert Packed Single-Precision Floating-Point Values to Packed Signed Doubleword Integer Values.")); + Instructions.insert("vcvtps2pd",QObject::tr("Convert Packed Single-Precision Floating-Point Values to Packed Double-Precision Floating-Point.")); + Instructions.insert("vcvtsd2si",QObject::tr("Convert Scalar Double-Precision Floating-Point Value to Doubleword Integer.")); + Instructions.insert("vcvtsd2siq",QObject::tr("Convert Scalar Double-Precision Floating-Point Value to quad word Integer.")); + Instructions.insert("vcvtsd2sil",QObject::tr("Convert Scalar Double-Precision Floating-Point Value to double word Integer.")); + Instructions.insert("vcvtsd2ss",QObject::tr("Convert Scalar Double-Precision Floating-Point Value to Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcvtsi2sd",QObject::tr("Convert Doubleword Integer to Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcvtsi2sdq",QObject::tr("Convert quad word Integer to Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcvtsi2sdl",QObject::tr("Convert double word Integer to Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcvtsi2ss",QObject::tr("Convert Doubleword Integer to Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcvtsi2ssq",QObject::tr("Convert quad word Integer to Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcvtsi2ssl",QObject::tr("Convert Doubleword Integer to Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vcvtss2sd",QObject::tr("Convert Scalar Single-Precision Floating-Point Value to Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vcvtss2si",QObject::tr("Convert Scalar Single-Precision Floating-Point Value to Doubleword Integer.")); + Instructions.insert("vcvtss2siq",QObject::tr("Convert Scalar Single-Precision Floating-Point Value to quad word Integer.")); + Instructions.insert("vcvtss2sil",QObject::tr("Convert Scalar Single-Precision Floating-Point Value to Doubleword Integer.")); + Instructions.insert("vcvttpd2dq",QObject::tr("Convert with Truncation Packed Double-Precision Floating-Point Values to Packed Doubleword.")); + Instructions.insert("vcvttpd2dqx",QObject::tr("Convert with Truncation Packed Double-Precision Floating-Point Values to Packed Doubleword.")); + Instructions.insert("vcvttpd2dqy",QObject::tr("Convert with Truncation Packed Double-Precision Floating-Point Values to Packed Doubleword.")); + Instructions.insert("vcvttps2dq",QObject::tr("Convert with Truncation Packed Single-Precision Floating-Point Values to Packed Signed Doubleword.")); + Instructions.insert("vcvttsd2si",QObject::tr("Convert with Truncation Scalar Double-Precision Floating-Point Value to Signed Integer.")); + Instructions.insert("vcvttsd2siq",QObject::tr("Convert with Truncation Scalar Double-Precision Floating-Point Value to Signed quad word Integer.")); + Instructions.insert("vcvttsd2sil",QObject::tr("Convert with Truncation Scalar Double-Precision Floating-Point Value to Signed double word Integer.")); + Instructions.insert("vcvttss2si",QObject::tr("Convert with Truncation Scalar Single-Precision Floating-Point Value to Integer.")); + Instructions.insert("vcvttss2siq",QObject::tr("Convert with Truncation Scalar Single-Precision Floating-Point Value to quad word Integer.")); + Instructions.insert("vcvttss2sil",QObject::tr("Convert with Truncation Scalar Single-Precision Floating-Point Value to double word Integer.")); + Instructions.insert("vdivpd",QObject::tr("Divide Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vdivps",QObject::tr("Divide Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vdivsd",QObject::tr("Divide Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vdivss",QObject::tr("Divide Scalar Single-Precision Floating-Point Values.")); + Instructions.insert("vdppd",QObject::tr("Dot Product of Packed Double Precision Floating-Point Values.")); + Instructions.insert("vdpps",QObject::tr("Dot Product of Packed Single Precision Floating-Point Values.")); + Instructions.insert("vextractps",QObject::tr("Extract Packed Floating-Point Values.")); + Instructions.insert("vhaddpd",QObject::tr("Packed Double-FP Horizontal Add.")); + Instructions.insert("vhaddps",QObject::tr("Packed Single-FP Horizontal Add.")); + Instructions.insert("vhsubpd",QObject::tr("Packed Double-FP Horizontal Subtract.")); + Instructions.insert("vhsubps",QObject::tr("Packed Single-FP Horizontal Subtract.")); + Instructions.insert("vinsertps",QObject::tr("Insert Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vlddqu",QObject::tr("Load Unaligned Integer 128 Bits.")); + Instructions.insert("vldmxcsr",QObject::tr("Load MXCSR Register.")); + Instructions.insert("vmaskmovdqu",QObject::tr("Store Selected Bytes of Double Quadword.")); + Instructions.insert("vmaxpd",QObject::tr("Maximum of Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vmaxps",QObject::tr("Maximum of Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vmaxsd",QObject::tr("Return Maximum Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vmaxss",QObject::tr("Return Maximum Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vminpd",QObject::tr("Minimum of Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vminps",QObject::tr("Minimum of Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vminsd",QObject::tr("Return Minimum Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vminss",QObject::tr("Return Minimum Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vmovapd",QObject::tr("Move Aligned Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vmovaps",QObject::tr("Move Aligned Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vmov",QObject::tr("Move Doubleword and Quadword.")); + Instructions.insert("vmovq",QObject::tr("Move Quadword.")); + Instructions.insert("vmovd",QObject::tr("Move Doubleword.")); + Instructions.insert("vmovddup",QObject::tr("Replicate Double FP Values.")); + Instructions.insert("vmovdqa",QObject::tr("Move Aligned Packed Integer Values.")); + Instructions.insert("vmovdqu",QObject::tr("Move Unaligned Packed Integer Values.")); + + + Instructions.insert("vmovhlps",QObject::tr("Move Packed Single-Precision Floating-Point Values High to Low.")); + Instructions.insert("vmovhpd",QObject::tr("Move High Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vmovhps",QObject::tr("Move High Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vmovlhps",QObject::tr("Move Packed Single-Precision Floating-Point Values Low to High.")); + Instructions.insert("vmovlpd",QObject::tr("Move Low Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vmovlps",QObject::tr("Move Low Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vmovmskpd",QObject::tr("Extract Packed Double-Precision Floating-Point Sign Mask.")); + Instructions.insert("vmovmskps",QObject::tr("Extract Packed Single-Precision Floating-Point Sign Mask.")); + Instructions.insert("vmovntdq",QObject::tr("Store Packed Integers Using Non-Temporal Hint.")); + Instructions.insert("vmovntdqa",QObject::tr("Load Double Quadword Non-Temporal Aligned Hint.")); + Instructions.insert("vmovntpd",QObject::tr("Store Packed Double-Precision Floating-Point Values Using Non-Temporal Hint.")); + Instructions.insert("vmovntps",QObject::tr("Store Packed Single-Precision Floating-Point Values Using Non-Temporal Hint.")); + Instructions.insert("vmovq",QObject::tr("Move Quadword.")); + Instructions.insert("vmovsd",QObject::tr("Move or Merge Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vmovshdup",QObject::tr("Replicate Single FP Values.")); + Instructions.insert("vmovsldup",QObject::tr("Replicate Single FP Values.")); + Instructions.insert("vmovss",QObject::tr("Move or Merge Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vmovupd",QObject::tr("Move Unaligned Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vmovups",QObject::tr("Move Unaligned Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vmpsadbw",QObject::tr("Compute Multiple Packed Sums of Absolute Difference.")); + Instructions.insert("vmulpd",QObject::tr("Multiply Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vmulps",QObject::tr("Multiply Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vmulsd",QObject::tr("Multiply Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vmulss",QObject::tr("Multiply Scalar Single-Precision Floating-Point Values.")); + Instructions.insert("vorpd",QObject::tr("Bitwise Logical OR of Double-Precision Floating-Point Values.")); + Instructions.insert("vorps",QObject::tr("Bitwise Logical OR of Single-Precision Floating-Point Values.")); + Instructions.insert("vpabsq",QObject::tr("Packed Absolute Quadword Value.")); + Instructions.insert("vpabsw",QObject::tr("Packed Absolute Word Value.")); + Instructions.insert("vpabsb",QObject::tr("Packed Absolute Byte Value.")); + Instructions.insert("vpabsd)",QObject::tr("Packed Absolute Doubleword Value.")); + Instructions.insert("vpackssdw",QObject::tr("Pack with Signed Saturation.")); + Instructions.insert("vpacksswb",QObject::tr("Pack with Signed Saturation.")); + Instructions.insert("vpackusdw",QObject::tr("Pack with Unsigned Saturation.")); + Instructions.insert("vpackuswb",QObject::tr("Pack with Unsigned Saturation.")); + Instructions.insert("vpaddq",QObject::tr("Add Packed Quadword Integers.")); + Instructions.insert("vpaddw",QObject::tr("Add Packed Word Integers.")); + Instructions.insert("vpaddb",QObject::tr("Add Packed Byte Integers.")); + Instructions.insert("vpaddd",QObject::tr("Add Packed Doubleword Integers.")); + + Instructions.insert("vpaddsw",QObject::tr("Add Packed Signed Word Integers with Signed Saturation.")); + Instructions.insert("vpaddsb",QObject::tr("Add Packed Signed Byte Integers with Signed Saturation.")); + + Instructions.insert("vpaddusw",QObject::tr("Add Packed Unsigned Word Integers with Unsigned Saturation.")); + Instructions.insert("vpaddusb",QObject::tr("Add Packed Unsigned Byte Integers with Unsigned Saturation.")); + + Instructions.insert("vpalignr",QObject::tr("Packed Align Right.")); + Instructions.insert("vpand",QObject::tr("Logical AND.")); + Instructions.insert("vpandn",QObject::tr("Logical AND NOT.")); + Instructions.insert("vpavgw",QObject::tr("Average Packed Word Integers.")); + Instructions.insert("vpavgb",QObject::tr("Average Packed Byte Integers.")); + + Instructions.insert("vpblendvb",QObject::tr("Variable Blend Packed Bytes.")); + Instructions.insert("vpblendw",QObject::tr("Blend Packed Words.")); + Instructions.insert("vpcmpeqq",QObject::tr("Compare Packed Quadword Integers for Equality.")); + Instructions.insert("vpcmpeqw",QObject::tr("Compare Packed Word Integers for Equality.")); + Instructions.insert("vpcmpeqb",QObject::tr("Compare Packed Byte Integers for Equality.")); + Instructions.insert("vpcmpeqd",QObject::tr("Compare Packed Doubleword Integers for Equality.")); + + Instructions.insert("vpcmpestri",QObject::tr("Packed Compare Explicit Length Strings, Return Index.")); + Instructions.insert("vpcmpestrm",QObject::tr("Packed Compare Explicit Length Strings, Return Mask.")); + Instructions.insert("vpcmpgtq",QObject::tr("Compare Packed Quadword Integers for Greater Than.")); + Instructions.insert("vpcmpgtw",QObject::tr("Compare Packed Word Integers for Greater Than.")); + Instructions.insert("vpcmpgtb",QObject::tr("Compare Packed Byte Integers for Greater Than.")); + Instructions.insert("vpcmpgtd",QObject::tr("Compare Packed Doubleword Integers for Greater Than.")); + + Instructions.insert("vpcmpistri",QObject::tr("Packed Compare Implicit Length Strings, Return Index.")); + Instructions.insert("vpcmpistrm",QObject::tr("Packed Compare Implicit Length Strings, Return Mask.")); + Instructions.insert("vpextrq",QObject::tr("Extract Quadword.")); + Instructions.insert("vpextrb",QObject::tr("Extract Byte.")); + Instructions.insert("vpextrd",QObject::tr("Extract Doubleword.")); + + + Instructions.insert("vpextrw",QObject::tr("Extract Word.")); + Instructions.insert("vphaddsw",QObject::tr("Packed Horizontal Add and Saturate.")); + Instructions.insert("vphaddw",QObject::tr("Packed Horizontal Add Word.")); + Instructions.insert("vphaddd",QObject::tr("Packed Horizontal Add Doubleword.")); + + Instructions.insert("vphminposuw",QObject::tr("Packed Horizontal Word Minimum.")); + Instructions.insert("vphsubsw",QObject::tr("Packed Horizontal Subtract and Saturate.")); + Instructions.insert("vphsubw",QObject::tr("Packed Horizontal Subtract Word.")); + Instructions.insert("vphsubd",QObject::tr("Packed Horizontal Subtract Doubleword.")); + Instructions.insert("vpinsrq",QObject::tr("Insert Quadword.")); + Instructions.insert("vpinsrb",QObject::tr("Insert Byte.")); + Instructions.insert("vpinsrw",QObject::tr("Insert Word.")); + Instructions.insert("vpinsrd",QObject::tr("Insert Doubleword.")); + Instructions.insert("vpinsrw",QObject::tr("Insert Word.")); + Instructions.insert("vpmaddubsw",QObject::tr("Multiply and Add Packed Signed and Unsigned Bytes.")); + Instructions.insert("vpmaddwd",QObject::tr("Multiply and Add Packed Integers.")); + Instructions.insert("vvpmaxsq",QObject::tr("Maximum of Packed Signed Quadword Integers.")); + Instructions.insert("vvpmaxsw",QObject::tr("Maximum of Packed Signed Word Integers.")); + Instructions.insert("vvpmaxsb",QObject::tr("Maximum of Packed Signed Byte Integers.")); + Instructions.insert("vvpmaxsd",QObject::tr("Maximum of Packed Signed Doubleword Integers.")); + Instructions.insert("vpmaxub",QObject::tr("Maximum of Packed Unsigned Byte Integers.")); + Instructions.insert("vpmaxud",QObject::tr("Maximum of Packed Unsigned Integers.")); + Instructions.insert("vpmaxuw",QObject::tr("Maximum of Packed Word Integers.")); + Instructions.insert("vpminsb",QObject::tr("Minimum of Packed Signed Byte Integers.")); + Instructions.insert("vpminsd",QObject::tr("Minimum of Packed Signed Integers.")); + Instructions.insert("vpminsw",QObject::tr("Minimum of Packed Signed Word Integers.")); + Instructions.insert("vpminub",QObject::tr("Minimum of Packed Unsigned Byte Integers.")); + Instructions.insert("vpminud",QObject::tr("Minimum of Packed Unsigned Integers.")); + Instructions.insert("vpminuw",QObject::tr("Minimum of Packed Word Integers.")); + Instructions.insert("vpmovmskb",QObject::tr("Move Byte Mask.")); + Instructions.insert("vpmovsxbd",QObject::tr("Packed Move byte to double word with Sign Extend.")); + Instructions.insert("vpmovsxbq",QObject::tr("Packed Move byte to quad word with Sign Extend.")); + Instructions.insert("vpmovsxbw",QObject::tr("Packed Move byte to word with Sign Extend.")); + Instructions.insert("vpmovsxdq",QObject::tr("Packed Move double word to quad word with Sign Extend.")); + Instructions.insert("vpmovsxwd)",QObject::tr("Packed Move word to double word with Sign Extend.")); + Instructions.insert("vpmovsxwq)",QObject::tr("Packed Move word to quad word with Sign Extend.")); + Instructions.insert("vpmovzxbd",QObject::tr("Packed Move byte to double word with Zero Extend.")); + Instructions.insert("vpmovzxbq",QObject::tr("Packed Move byte to quad word with Zero Extend.")); + Instructions.insert("vpmovzxbw",QObject::tr("Packed Move byte to word with Zero Extend.")); + Instructions.insert("vpmovzxdq",QObject::tr("Packed Move double word to quad word with Zero Extend.")); + Instructions.insert("vpmovzxwd)",QObject::tr("Packed Move word to double word with Zero Extend.")); + Instructions.insert("vpmovzxwq)",QObject::tr("Packed Move word to quad word with Zero Extend.")); + Instructions.insert("vpmuldq",QObject::tr("Multiply Packed Doubleword Integers.")); + Instructions.insert("vpmulhrsw",QObject::tr("Packed Multiply High with Round and Scale.")); + Instructions.insert("vpmulhuw",QObject::tr("Multiply Packed Unsigned Integers and Store High Result.")); + Instructions.insert("vpmulhw",QObject::tr("Multiply Packed Signed Integers and Store High Result.")); + Instructions.insert("vpmulld",QObject::tr("Multiply Packed Integers and Store Low Result.")); + Instructions.insert("vpmullw",QObject::tr("Multiply Packed Signed Integers and Store Low Result.")); + Instructions.insert("vpmuludq",QObject::tr("Multiply Packed Unsigned Doubleword Integers.")); + Instructions.insert("vpor",QObject::tr("Bitwise Logical Or.")); + Instructions.insert("vpsadbw",QObject::tr("Compute Sum of Absolute Differences.")); + Instructions.insert("vpshufb",QObject::tr("Packed Shuffle Bytes.")); + Instructions.insert("vpshufd",QObject::tr("Shuffle Packed Doublewords.")); + Instructions.insert("vpshufhw",QObject::tr("Shuffle Packed High Words.")); + Instructions.insert("vpshuflw",QObject::tr("Shuffle Packed Low Words.")); + Instructions.insert("vpsignw",QObject::tr("Packed SIGN Word.")); + Instructions.insert("vpsignb",QObject::tr("Packed SIGN Byte.")); + Instructions.insert("vpsignd",QObject::tr("Packed SIGN Doubleword.")); + + Instructions.insert("vpslldq",QObject::tr("Shift Double Quadword Left Logical.")); + Instructions.insert("vpsllq",QObject::tr("Bit Shift Left Quadword.")); + Instructions.insert("vpsllw",QObject::tr("Bit Shift Left Word.")); + Instructions.insert("vpslld",QObject::tr("Bit Shift Left Doubleword.")); + + Instructions.insert("vpsraw",QObject::tr("Bit Shift Arithmetic Right Word.")); + Instructions.insert("vpsrad",QObject::tr("Bit Shift Arithmetic Right Doubleword.")); + Instructions.insert("vpsrldq",QObject::tr("Shift Double Quadword Right Logical.")); + Instructions.insert("vpsrlq",QObject::tr("Shift Packed Data Right Logical Quadword.")); + Instructions.insert("vpsrlw",QObject::tr("Shift Packed Data Right Logical Word.")); + Instructions.insert("vpsrld",QObject::tr("Shift Packed Data Right Logical Doubleword.")); + + Instructions.insert("vpsubq",QObject::tr("Packed Quadword Integer Subtract.")); + Instructions.insert("vpsubw",QObject::tr("Packed Word Integer Subtract.")); + Instructions.insert("vpsubb",QObject::tr("Packed Byte Integer Subtract.")); + Instructions.insert("vpsubd",QObject::tr("Packed Doubleword Integer Subtract.")); + + Instructions.insert("vpsubsw",QObject::tr("Subtract Packed Signed Word Integers with Signed Saturation.")); + Instructions.insert("vpsubsb",QObject::tr("Subtract Packed Signed Byte Integers with Signed Saturation.")); + + Instructions.insert("vpsubusw",QObject::tr("Subtract Packed Unsigned Word Integers with Unsigned Saturation.")); + Instructions.insert("vpsubusb",QObject::tr("Subtract Packed Unsigned Byte Integers with Unsigned Saturation.")); + + Instructions.insert("vptest",QObject::tr("Logical Compare.")); + Instructions.insert("vpunpckhbw",QObject::tr("Unpack High Data.")); + Instructions.insert("vpunpckhdq",QObject::tr("Unpack High Data.")); + Instructions.insert("vpunpckhqdq",QObject::tr("Unpack High Data.")); + Instructions.insert("vpunpckhwd",QObject::tr("Unpack High Data.")); + Instructions.insert("vpunpcklbw",QObject::tr("Unpack Low Data.")); + Instructions.insert("vpunpckldq",QObject::tr("Unpack Low Data.")); + Instructions.insert("vpunpcklqdq",QObject::tr("Unpack Low Data.")); + Instructions.insert("vpunpcklwd",QObject::tr("Unpack Low Data.")); + + Instructions.insert("vpxor",QObject::tr("Exclusive Or.")); + + Instructions.insert("vrcpps",QObject::tr("Compute Reciprocals of Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vrcpss",QObject::tr("Compute Reciprocal of Scalar Single-Precision Floating-Point Values.")); + Instructions.insert("vroundpd",QObject::tr("Round Packed Double Precision Floating-Point Values.")); + Instructions.insert("vroundps",QObject::tr("Round Packed Single Precision Floating-Point Values.")); + Instructions.insert("vroundsd",QObject::tr("Round Scalar Double Precision Floating-Point Values.")); + Instructions.insert("vroundss",QObject::tr("Round Scalar Single Precision Floating-Point Values.")); + Instructions.insert("vrsqrtps",QObject::tr("Compute Reciprocals of Square Roots of Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vrsqrtss",QObject::tr("Compute Reciprocal of Square Root of Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vshufpd",QObject::tr("Shuffle Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vshufps",QObject::tr("Shuffle Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vsqrtpd",QObject::tr("Square Root of Double-Precision Floating-Point Values.")); + Instructions.insert("vsqrtps",QObject::tr("Square Root of Single-Precision Floating-Point Values.")); + Instructions.insert("vsqrtsd",QObject::tr("Compute Square Root of Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vsqrtss",QObject::tr("Compute Square Root of Scalar Single-Precision Value.")); + Instructions.insert("vstmxcsr",QObject::tr("Store MXCSR Register State.")); + Instructions.insert("vsubpd",QObject::tr("Subtract Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vsubps",QObject::tr("Subtract Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vsubsd",QObject::tr("Subtract Scalar Double-Precision Floating-Point Value.")); + Instructions.insert("vsubss",QObject::tr("Subtract Scalar Single-Precision Floating-Point Value.")); + Instructions.insert("vucomisd",QObject::tr("Unordered Compare Scalar Double-Precision Floating-Point Values and Set EFLAGS.")); + Instructions.insert("vucomiss",QObject::tr("Unordered Compare Scalar Single-Precision Floating-Point Values and Set EFLAGS.")); + Instructions.insert("vunpckhpd",QObject::tr("Unpack and Interleave High Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vunpckhps",QObject::tr("Unpack and Interleave High Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vunpcklpd",QObject::tr("Unpack and Interleave Low Packed Double-Precision Floating-Point Values.")); + Instructions.insert("vunpcklps",QObject::tr("Unpack and Interleave Low Packed Single-Precision Floating-Point Values.")); + Instructions.insert("vbroadcastf128",QObject::tr("Load with Broadcast Floating-Point Data.")); + Instructions.insert("vbroadcastsd",QObject::tr("Load with Broadcast Double-Precision Floating-Point Data.")); + Instructions.insert("vbroadcastss",QObject::tr("Load with Broadcast Single-Precision Floating-Point Data.")); + Instructions.insert("vextractf128",QObject::tr("Extract Packed Floating-Point Values.")); + Instructions.insert("vinsertf128",QObject::tr("Insert Packed Floating-Point Values.")); + Instructions.insert("vmaskmovpd",QObject::tr("Conditional SIMD Packed Double-Precision Loads and Stores.")); + Instructions.insert("vmaskmovps",QObject::tr("Conditional SIMD Packed Single-Precision Loads and Stores.")); + Instructions.insert("vperm2f128",QObject::tr("Permute Floating-Point Values.")); + Instructions.insert("vpermilpd",QObject::tr("Permute Double-Precision Floating-Point Values.")); + Instructions.insert("vpermilps",QObject::tr("Permute Single-Precision Floating-Point Values.")); + Instructions.insert("vtestpd",QObject::tr("Packed Double-Precision Bit Test.")); + Instructions.insert("vtestps",QObject::tr("Packed Single-Precision Bit Test.")); + Instructions.insert("vzeroall",QObject::tr("Zero All YMM Registers.")); + Instructions.insert("vzeroupper",QObject::tr("Zero Upper Bits of YMM Registers.")); + Instructions.insert("vxorpd",QObject::tr("Bitwise Logical XOR for Double-Precision Floating-Point Values.")); + Instructions.insert("vxorps",QObject::tr("Bitwise Logical XOR for Single-Precision Floating-Point Values.")); + Instructions.insert("vpclmulqdq",QObject::tr("Carry-Less Multiplication Quadword, Requires PCLMULQDQ CPUID-flag.")); #endif InstructionNames=QSet(Instructions.keyBegin(),Instructions.keyEnd()); } diff --git a/libs/qsynedit/qsynedit_zh_CN.ts b/libs/qsynedit/qsynedit_zh_CN.ts index f734d4d5..804cfc20 100644 --- a/libs/qsynedit/qsynedit_zh_CN.ts +++ b/libs/qsynedit/qsynedit_zh_CN.ts @@ -2856,6 +2856,1434 @@ improves the performance of spin-wait loops. + + + Add Packed Double-Precision Floating-Point Values. + + + + + Add Packed Single-Precision Floating-Point Values. + + + + + Add Scalar Double-Precision Floating-Point Values. + + + + + Add Scalar Single-Precision Floating-Point Values. + + + + + Packed Double-FP Add/Subtract. + + + + + Packed Single-FP Add/Subtract. + + + + + Bitwise Logical AND NOT of Packed Double-Precision Floating-Point Values. + + + + + Bitwise Logical AND NOT of Packed Single-Precision Floating-Point Values. + + + + + Bitwise Logical AND of Packed Double-Precision Floating-Point Values. + + + + + Bitwise Logical AND of Packed Single-Precision Floating-Point Values. + + + + + Blend Packed Double Precision Floating-Point Values. + + + + + Blend Packed Single Precision Floating-Point Values. + + + + + Variable Blend Packed Double Precision Floating-Point Values. + + + + + Variable Blend Packed Single Precision Floating-Point Values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Compare Packed Double-Precision Floating-Point Values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Compare Packed Single-Precision Floating-Point Values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Compare Scalar Double-Precision Floating-Point Value. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Compare Scalar Single-Precision Floating-Point Value. + + + + + Compare Scalar Ordered Double-Precision Floating-Point Values and Set EFLAGS. + + + + + Compare Scalar Ordered Single-Precision Floating-Point Values and Set EFLAGS. + + + + + Convert Packed Doubleword Integers to Packed Double-Precision Floating-Point Values. + + + + + Convert Packed Doubleword Integers to Packed Single-Precision Floating-Point Values. + + + + + + + Convert Packed Double-Precision Floating-Point Values to Packed Doubleword Integers. + + + + + + + Convert Packed Double-Precision Floating-Point Values to Packed Single-Precision Floating-Point Values. + + + + + Convert Packed Single-Precision Floating-Point Values to Packed Signed Doubleword Integer Values. + + + + + Convert Packed Single-Precision Floating-Point Values to Packed Double-Precision Floating-Point. + + + + + Convert Scalar Double-Precision Floating-Point Value to Doubleword Integer. + + + + + Convert Scalar Double-Precision Floating-Point Value to quad word Integer. + + + + + Convert Scalar Double-Precision Floating-Point Value to double word Integer. + + + + + Convert Scalar Double-Precision Floating-Point Value to Scalar Single-Precision Floating-Point Value. + + + + + Convert Doubleword Integer to Scalar Double-Precision Floating-Point Value. + + + + + Convert quad word Integer to Scalar Double-Precision Floating-Point Value. + + + + + Convert double word Integer to Scalar Double-Precision Floating-Point Value. + + + + + + Convert Doubleword Integer to Scalar Single-Precision Floating-Point Value. + + + + + Convert quad word Integer to Scalar Single-Precision Floating-Point Value. + + + + + Convert Scalar Single-Precision Floating-Point Value to Scalar Double-Precision Floating-Point Value. + + + + + + Convert Scalar Single-Precision Floating-Point Value to Doubleword Integer. + + + + + Convert Scalar Single-Precision Floating-Point Value to quad word Integer. + + + + + + + Convert with Truncation Packed Double-Precision Floating-Point Values to Packed Doubleword. + + + + + Convert with Truncation Packed Single-Precision Floating-Point Values to Packed Signed Doubleword. + + + + + Convert with Truncation Scalar Double-Precision Floating-Point Value to Signed Integer. + + + + + Convert with Truncation Scalar Double-Precision Floating-Point Value to Signed quad word Integer. + + + + + Convert with Truncation Scalar Double-Precision Floating-Point Value to Signed double word Integer. + + + + + Convert with Truncation Scalar Single-Precision Floating-Point Value to Integer. + + + + + Convert with Truncation Scalar Single-Precision Floating-Point Value to quad word Integer. + + + + + Convert with Truncation Scalar Single-Precision Floating-Point Value to double word Integer. + + + + + Divide Packed Double-Precision Floating-Point Values. + + + + + Divide Packed Single-Precision Floating-Point Values. + + + + + Divide Scalar Double-Precision Floating-Point Value. + + + + + Divide Scalar Single-Precision Floating-Point Values. + + + + + Dot Product of Packed Double Precision Floating-Point Values. + + + + + Dot Product of Packed Single Precision Floating-Point Values. + + + + + + Extract Packed Floating-Point Values. + + + + + Packed Double-FP Horizontal Add. + + + + + Packed Single-FP Horizontal Add. + + + + + Packed Double-FP Horizontal Subtract. + + + + + Packed Single-FP Horizontal Subtract. + + + + + Insert Scalar Single-Precision Floating-Point Value. + + + + + Load Unaligned Integer 128 Bits. + + + + + Load MXCSR Register. + + + + + Store Selected Bytes of Double Quadword. + + + + + Maximum of Packed Double-Precision Floating-Point Values. + + + + + Maximum of Packed Single-Precision Floating-Point Values. + + + + + Return Maximum Scalar Double-Precision Floating-Point Value. + + + + + Return Maximum Scalar Single-Precision Floating-Point Value. + + + + + Minimum of Packed Double-Precision Floating-Point Values. + + + + + Minimum of Packed Single-Precision Floating-Point Values. + + + + + Return Minimum Scalar Double-Precision Floating-Point Value. + + + + + Return Minimum Scalar Single-Precision Floating-Point Value. + + + + + Move Aligned Packed Double-Precision Floating-Point Values. + + + + + Move Aligned Packed Single-Precision Floating-Point Values. + + + + + Move Doubleword and Quadword. + + + + + + Move Quadword. + + + + + Move Doubleword. + + + + + Replicate Double FP Values. + + + + + Move Aligned Packed Integer Values. + + + + + Move Unaligned Packed Integer Values. + + + + + Move Packed Single-Precision Floating-Point Values High to Low. + + + + + Move High Packed Double-Precision Floating-Point Values. + + + + + Move High Packed Single-Precision Floating-Point Values. + + + + + Move Packed Single-Precision Floating-Point Values Low to High. + + + + + Move Low Packed Double-Precision Floating-Point Values. + + + + + Move Low Packed Single-Precision Floating-Point Values. + + + + + Extract Packed Double-Precision Floating-Point Sign Mask. + + + + + Extract Packed Single-Precision Floating-Point Sign Mask. + + + + + Store Packed Integers Using Non-Temporal Hint. + + + + + Load Double Quadword Non-Temporal Aligned Hint. + + + + + Store Packed Double-Precision Floating-Point Values Using Non-Temporal Hint. + + + + + Store Packed Single-Precision Floating-Point Values Using Non-Temporal Hint. + + + + + Move or Merge Scalar Double-Precision Floating-Point Value. + + + + + + Replicate Single FP Values. + + + + + Move or Merge Scalar Single-Precision Floating-Point Value. + + + + + Move Unaligned Packed Double-Precision Floating-Point Values. + + + + + Move Unaligned Packed Single-Precision Floating-Point Values. + + + + + Compute Multiple Packed Sums of Absolute Difference. + + + + + Multiply Packed Double-Precision Floating-Point Values. + + + + + Multiply Packed Single-Precision Floating-Point Values. + + + + + Multiply Scalar Double-Precision Floating-Point Value. + + + + + Multiply Scalar Single-Precision Floating-Point Values. + + + + + Bitwise Logical OR of Double-Precision Floating-Point Values. + + + + + Bitwise Logical OR of Single-Precision Floating-Point Values. + + + + + Packed Absolute Quadword Value. + + + + + Packed Absolute Word Value. + + + + + Packed Absolute Byte Value. + + + + + Packed Absolute Doubleword Value. + + + + + + Pack with Signed Saturation. + + + + + + Pack with Unsigned Saturation. + + + + + Add Packed Quadword Integers. + + + + + Add Packed Word Integers. + + + + + Add Packed Byte Integers. + + + + + Add Packed Doubleword Integers. + + + + + Add Packed Signed Word Integers with Signed Saturation. + + + + + Add Packed Signed Byte Integers with Signed Saturation. + + + + + Add Packed Unsigned Word Integers with Unsigned Saturation. + + + + + Add Packed Unsigned Byte Integers with Unsigned Saturation. + + + + + Packed Align Right. + + + + + Logical AND. + + + + + Logical AND NOT. + + + + + Average Packed Word Integers. + + + + + Average Packed Byte Integers. + + + + + Variable Blend Packed Bytes. + + + + + Blend Packed Words. + + + + + Compare Packed Quadword Integers for Equality. + + + + + Compare Packed Word Integers for Equality. + + + + + Compare Packed Byte Integers for Equality. + + + + + Compare Packed Doubleword Integers for Equality. + + + + + Packed Compare Explicit Length Strings, Return Index. + + + + + Packed Compare Explicit Length Strings, Return Mask. + + + + + Compare Packed Quadword Integers for Greater Than. + + + + + Compare Packed Word Integers for Greater Than. + + + + + Compare Packed Byte Integers for Greater Than. + + + + + Compare Packed Doubleword Integers for Greater Than. + + + + + Packed Compare Implicit Length Strings, Return Index. + + + + + Packed Compare Implicit Length Strings, Return Mask. + + + + + Extract Quadword. + + + + + Extract Byte. + + + + + Extract Doubleword. + + + + + Extract Word. + + + + + Packed Horizontal Add and Saturate. + + + + + Packed Horizontal Add Word. + + + + + Packed Horizontal Add Doubleword. + + + + + Packed Horizontal Word Minimum. + + + + + Packed Horizontal Subtract and Saturate. + + + + + Packed Horizontal Subtract Word. + + + + + Packed Horizontal Subtract Doubleword. + + + + + Insert Quadword. + + + + + Insert Byte. + + + + + + Insert Word. + + + + + Insert Doubleword. + + + + + Multiply and Add Packed Signed and Unsigned Bytes. + + + + + Multiply and Add Packed Integers. + + + + + Maximum of Packed Signed Quadword Integers. + + + + + Maximum of Packed Signed Word Integers. + + + + + Maximum of Packed Signed Byte Integers. + + + + + Maximum of Packed Signed Doubleword Integers. + + + + + Maximum of Packed Unsigned Byte Integers. + + + + + Maximum of Packed Unsigned Integers. + + + + + Maximum of Packed Word Integers. + + + + + Minimum of Packed Signed Byte Integers. + + + + + Minimum of Packed Signed Integers. + + + + + Minimum of Packed Signed Word Integers. + + + + + Minimum of Packed Unsigned Byte Integers. + + + + + Minimum of Packed Unsigned Integers. + + + + + Minimum of Packed Word Integers. + + + + + Move Byte Mask. + + + + + Packed Move byte to double word with Sign Extend. + + + + + Packed Move byte to quad word with Sign Extend. + + + + + Packed Move byte to word with Sign Extend. + + + + + Packed Move double word to quad word with Sign Extend. + + + + + Packed Move word to double word with Sign Extend. + + + + + Packed Move word to quad word with Sign Extend. + + + + + Packed Move byte to double word with Zero Extend. + + + + + Packed Move byte to quad word with Zero Extend. + + + + + Packed Move byte to word with Zero Extend. + + + + + Packed Move double word to quad word with Zero Extend. + + + + + Packed Move word to double word with Zero Extend. + + + + + Packed Move word to quad word with Zero Extend. + + + + + Multiply Packed Doubleword Integers. + + + + + Packed Multiply High with Round and Scale. + + + + + Multiply Packed Unsigned Integers and Store High Result. + + + + + Multiply Packed Signed Integers and Store High Result. + + + + + Multiply Packed Integers and Store Low Result. + + + + + Multiply Packed Signed Integers and Store Low Result. + + + + + Multiply Packed Unsigned Doubleword Integers. + + + + + Bitwise Logical Or. + + + + + Compute Sum of Absolute Differences. + + + + + Packed Shuffle Bytes. + + + + + Shuffle Packed Doublewords. + + + + + Shuffle Packed High Words. + + + + + Shuffle Packed Low Words. + + + + + Packed SIGN Word. + + + + + Packed SIGN Byte. + + + + + Packed SIGN Doubleword. + + + + + Shift Double Quadword Left Logical. + + + + + Bit Shift Left Quadword. + + + + + Bit Shift Left Word. + + + + + Bit Shift Left Doubleword. + + + + + Bit Shift Arithmetic Right Word. + + + + + Bit Shift Arithmetic Right Doubleword. + + + + + Shift Double Quadword Right Logical. + + + + + Shift Packed Data Right Logical Quadword. + + + + + Shift Packed Data Right Logical Word. + + + + + Shift Packed Data Right Logical Doubleword. + + + + + Packed Quadword Integer Subtract. + + + + + Packed Word Integer Subtract. + + + + + Packed Byte Integer Subtract. + + + + + Packed Doubleword Integer Subtract. + + + + + Subtract Packed Signed Word Integers with Signed Saturation. + + + + + Subtract Packed Signed Byte Integers with Signed Saturation. + + + + + Subtract Packed Unsigned Word Integers with Unsigned Saturation. + + + + + Subtract Packed Unsigned Byte Integers with Unsigned Saturation. + + + + + Logical Compare. + + + + + + + + Unpack High Data. + + + + + + + + Unpack Low Data. + + + + + Exclusive Or. + + + + + Compute Reciprocals of Packed Single-Precision Floating-Point Values. + + + + + Compute Reciprocal of Scalar Single-Precision Floating-Point Values. + + + + + Round Packed Double Precision Floating-Point Values. + + + + + Round Packed Single Precision Floating-Point Values. + + + + + Round Scalar Double Precision Floating-Point Values. + + + + + Round Scalar Single Precision Floating-Point Values. + + + + + Compute Reciprocals of Square Roots of Packed Single-Precision Floating-Point Values. + + + + + Compute Reciprocal of Square Root of Scalar Single-Precision Floating-Point Value. + + + + + Shuffle Packed Double-Precision Floating-Point Values. + + + + + Shuffle Packed Single-Precision Floating-Point Values. + + + + + Square Root of Double-Precision Floating-Point Values. + + + + + Square Root of Single-Precision Floating-Point Values. + + + + + Compute Square Root of Scalar Double-Precision Floating-Point Value. + + + + + Compute Square Root of Scalar Single-Precision Value. + + + + + Store MXCSR Register State. + + + + + Subtract Packed Double-Precision Floating-Point Values. + + + + + Subtract Packed Single-Precision Floating-Point Values. + + + + + Subtract Scalar Double-Precision Floating-Point Value. + + + + + Subtract Scalar Single-Precision Floating-Point Value. + + + + + Unordered Compare Scalar Double-Precision Floating-Point Values and Set EFLAGS. + + + + + Unordered Compare Scalar Single-Precision Floating-Point Values and Set EFLAGS. + + + + + Unpack and Interleave High Packed Double-Precision Floating-Point Values. + + + + + Unpack and Interleave High Packed Single-Precision Floating-Point Values. + + + + + Unpack and Interleave Low Packed Double-Precision Floating-Point Values. + + + + + Unpack and Interleave Low Packed Single-Precision Floating-Point Values. + + + + + Load with Broadcast Floating-Point Data. + + + + + Load with Broadcast Double-Precision Floating-Point Data. + + + + + Load with Broadcast Single-Precision Floating-Point Data. + + + + + Insert Packed Floating-Point Values. + + + + + Conditional SIMD Packed Double-Precision Loads and Stores. + + + + + Conditional SIMD Packed Single-Precision Loads and Stores. + + + + + Permute Floating-Point Values. + + + + + Permute Double-Precision Floating-Point Values. + + + + + Permute Single-Precision Floating-Point Values. + + + + + Packed Double-Precision Bit Test. + + + + + Packed Single-Precision Bit Test. + + + + + Zero All YMM Registers. + + + + + Zero Upper Bits of YMM Registers. + + + + + Bitwise Logical XOR for Double-Precision Floating-Point Values. + + + + + Bitwise Logical XOR for Single-Precision Floating-Point Values. + + + + + Carry-Less Multiplication Quadword, Requires PCLMULQDQ CPUID-flag. + + QSynedit::Document