- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下代码:
while Assigned(p) do begin
np:= p^.next;
h:= leaf_hash(p^.data); <<-- inline routine
h:= h mod nhashprime;
p^.next:= nhashtab[h];
nhashtab[h]:= p;
p:= np;
end; { while }
生成以下组件:
hlife.pas.605: h:= leaf_hash(p^.data);
00000000005D4602 498B4018 mov rax,[r8+$18]
00000000005D4606 48C1E830 shr rax,$30
00000000005D460A 498B5018 mov rdx,[r8+$18]
00000000005D460E 48C1EA20 shr rdx,$20
00000000005D4612 81E2FFFF0000 and edx,$0000ffff
00000000005D4618 4D8B5818 mov r11,[r8+$18]
00000000005D461C 49C1EB10 shr r11,$10
00000000005D4620 4181E3FFFF0000 and r11d,$0000ffff
00000000005D4627 418B7018 mov esi,[r8+$18]
00000000005D462B 81E6FFFF0000 and esi,$0000ffff
00000000005D4631 488D34F6 lea rsi,[rsi+rsi*8]
00000000005D4635 4403DE add r11d,esi
00000000005D4638 4F8D1CDB lea r11,[r11+r11*8]
00000000005D463C 4103D3 add edx,r11d
00000000005D463F 488D14D2 lea rdx,[rdx+rdx*8]
00000000005D4643 03C2 add eax,edx
hlife.pas.606: h:= h mod nhashprime;
00000000005D4645 8BC0 mov eax,eax <<--- Why is there a NOP here?
00000000005D4647 4C63DB movsxd r11,rbx
00000000005D464A 4899 cwd
00000000005D464C 49F7FB idiv r11
00000000005D464F 488BC2 mov rax,rdx
hlife.pas.607: p^.next:= nhashtab[h];
00000000005D4652 488B5538 mov rdx,[rbp+$38]
Delphi 在 nhashtab[h]:= p;
行之前插入一个 NOP。如果 leaf_hash
函数是一个普通函数,那么它就有意义。
(不,不是真的,因为 RET 仍会返回到 [5D4645] 执行 nop)
但现在这不是一个跳跃目标。
所以我(只是)好奇,为什么要这样做?
[编辑]:SSCCE
好的,我已经完成了 SSCCE {虽然不是很短,但还是必须的。
注意编译器设置(Debug + Win64)
unit Unit16;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
type
pnode = ^node;
tflavour = (tnode, tleaf, tleaf64);
node = record
case flavour: tflavour of
tnode: (next: pnode; (* hash link *)
nw, ne, sw, se: pnode; (* constant; nw not= 0 means nonleaf *)
res: pnode); (* cache *)
tleaf: (next1: pnode; (* hash link *)
isnode: pnode; (* must always be zero for leaves *)
nw1, ne1, sw1, se1: word; (* constant *)
res1, res2: word; (* constant *)
);
tleaf64: (next2: pnode; (* hash link *)
isnode1: pnode; (* must always be zero for leaves *)
data: Uint64; (* constant *)
res1a, res2a: word; (* constant *)
)
end;
ppnode = array of pnode;
THashBox = class(TPersistent)
strict private
leafhashpop: integer;
leafhashlimit: integer;
leafhashprime: integer;
leafhashtab: ppnode;
nodehashpop: integer;
nodehashlimit: integer;
nodehashprime: integer;
nodehashtab: ppnode;
private
TotalTime, Occurrences: Uint64;
StartTime, EndTime: Uint64;
procedure resize_leaves();
public
constructor Create;
end;
TForm16 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
HashBox: THashBox;
public
end;
var
Form16: TForm16;
implementation
{$R *.dfm}
const
maxmem = 2000*1000*1000; {2GB}
var
alloced: cardinal;
function rdtsc: int64; assembler;
asm
{ xor eax,eax;
push rbx
cpuid
pop rbx }
rdtsc
end;
function node_hash(n: pnode): cardinal; { inline; } assembler; overload;
// var
// a: pnativeint;
// begin
// Result:= nativeint(n^.se) + 3 * (nativeint(n^.sw) + 3 * (nativeint(n^.ne) + 3 * nativeint(n^.nw) + 3));
asm
mov eax,[rcx+node.nw]
lea eax,[eax+eax*2+3]
add eax,[rcx+node.ne]
lea eax,[eax+eax*2]
add eax,[rcx+node.sw]
lea eax,[eax+eax*2]
add eax,[rcx+node.se]
end;
function leaf_hash(a, b, c, d: cardinal): cardinal; inline; overload;
begin
Result:= (d + 9 * (c + 9 * (b + 9 * a)))
end;
function leaf_hash(data: Uint64): cardinal; inline; overload;
begin
// Result:= d + 9 * (c + 9 * (b + 9 * a));
Result:= ((data shr 48) + 9 * (((data shr 32) and $FFFF) + 9 * (((data shr 16) and $FFFF) + 9 * (data and $FFFF))));
Inc(Result);
end;
procedure TForm16.Button1Click(Sender: TObject);
begin
HashBox:= THashBox.Create;
Hashbox.resize_leaves;
end;
function nextprime(old: integer): integer;
begin
Result:= 1009;
end;
constructor THashBox.Create;
begin
leafhashprime:= 7;
SetLength(leafhashtab, leafhashprime);
end;
procedure THashBox.resize_leaves();
var
i, i1, i2: integer;
nhashprime: Cardinal;
p: pnode;
nhashtab: ppnode;
np: pnode;
h: Integer;
n, n2: integer;
diff1, diff2: integer;
begin
nhashprime:= nextprime(4 * leafhashprime);
if (nhashprime * sizeof(pnode) > maxmem - alloced) then begin
leafhashlimit:= 2000 * 1000 * 1000;
exit;
end;
(*
* Don't let the hash table buckets take more than 4% of the
* memory. If we're starting to strain memory, let the buckets
* fill up a bit more.
*)
if (nhashprime > maxmem div 100) then begin
nhashprime:= nextprime(maxmem div 100);
if (nhashprime = leafhashprime) then begin
leafhashlimit:= 2000 * 1000 * 1000;
exit;
end;
end;
SetLength(nhashtab, nhashprime); //make a new table, do not resize the existing one.
alloced:= alloced + sizeof(pnode) * (nhashprime - leafhashprime);
diff1:= maxint;
for i1:= 0 to 100 do begin
n:= 0;
StartTime:= rdtsc;
for i:= 0 to leafhashprime - 1 do begin
p:= leafhashtab[i];
if Assigned(p) then begin
h:= node_hash(p);
h:= h mod nhashprime;
inc(n, h);
end;
end;
EndTime:= rdtsc;
if ((EndTime - StartTime) < diff1) then diff1:= (EndTime - StartTime);
end;
diff2:= maxint;
for i1:= 0 to 100 do begin
n2:= 0;
StartTime:= rdtsc;
for i:= 0 to leafhashprime - 1 do begin
p:= leafhashtab[i];
if Assigned(p) then begin
inc(n2);
end;
end;
EndTime:= rdtsc;
if (endtime - starttime) < diff2 then diff2:= endtime - starttime;
end;
TotalTime:= diff1 - diff2;
if n <> n2 then Occurrences:= nhashprime;
for i:= 0 to leafhashprime - 1 do begin
// for (p=hashtab[i]; p;) {
p:= leafhashtab[i];
while Assigned(p) do begin <<--- put a breakpoint here
np:= p^.next;
h:= leaf_hash(p^.data);
h:= h mod nhashprime;
p^.next:= nhashtab[h];
nhashtab[h]:= p;
p:= np;
end; { while }
end; { for i }
// free(hashtab);
leafhashtab:= nhashtab;
leafhashprime:= nhashprime;
leafhashlimit:= leafhashprime;
end;
end.
您将看到这个反汇编:
Unit16.pas.196: h:= h mod nhashprime;
000000000059CE4B 4863C0 movsxd rax,rax
000000000059CE4E 448B5528 mov r10d,[rbp+$28]
000000000059CE52 458BD2 mov r10d,r10d <<--- weird NOP here
000000000059CE55 4899 cwd
000000000059CE57 49F7FA idiv r10
000000000059CE5A 488BC2 mov rax,rdx
Unit16.pas.197: p^.next:= nhashtab[h];
000000000059CE5D 488B5538 mov rdx,[rbp+$38]
最佳答案
答案是
MOV EAX,EAX
不是空操作
在 x64 上,操作 64 位寄存器的低 32 位会将高 32 位清零。
所以上面的指令应该理解为:
MOVZX RAX,EAX
根据AMD的说法
Results of 32-bit operations are implicitly zero extended to 64-bit values.
关于delphi - 为什么Delphi要在不知名的地方插入nop?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19041407/
我有 512 行要插入到数据库中。我想知道提交多个插入内容是否比提交一个大插入内容有任何优势。例如 1x 512 行插入 -- INSERT INTO mydb.mytable (id, phonen
已经提出了类似的问题,但由于它总是取决于,我单独询问我的具体情况。 我有一个网站页面,显示来自数据库的一些数据,要从该数据库生成数据,我必须执行一些相当复杂的多连接查询。 数据每天(每晚)更新一次。
我正在使用 MongoDb 和 MySQL 的 python 连接器 pymongo 和 pymysql 测试 MongoDb 和 MySQL,特别是插入功能。 pymongo版本是3.4,pymys
从 C# 应用程序插入大型数组(10M 元素)的最快方法是什么? 到目前为止,我使用的是批量插入。 C# 应用程序生成一个大文本文件,我使用 BULK INSERT 命令加载它。出于好奇,我编写了一个
我编写了一个枚举类型,当我为它运行我创建的 JUnit 测试时会出现以下语法错误: java.lang.Error: Unresolved compilation problems: Synt
我正在尝试创建一个程序,它将单词列表作为输入,并将它们排序为二叉树,以便能够找到它们,例如像字典。这是我到目前为止所做的,但是 newEl -> el = input; 出现段错误,我知道这是因为它试
你好 我有编译这个问题 \begin{equation} J = \sum_{j=1}^{C} \end{equation} 我不断收到错误 missing $ inserted 这很奇怪,因
我需要使用 LINQ to SQL 将记录插入到没有主键的表中。 table 设计得很差;我无法控制表结构。该表由几个 varchar 字段、一个文本字段和一个时间戳组成。它用作其他实体的审计跟踪。
我正在尝试使用 itextsharp 创建 Pdf。我添加了一张包含两列的表格,其中一列包含文本和其他图像。我想要恒定的图像大小 如果另一个单元格中的文本增加并且其他单元格中的图像大小不同,我的图像会
我想把 calory 作为 fruits 的第一个值,我做不到,有人能帮忙吗? $sql = 'INSERT INTO fruits VALUES('', ?, ?, ?)'
我有一个包含季度观察结果的 data.frame。我现在想插入每月值(首选三次,线性很好)。中间目标应该是使用 DATE 创建一个 data.frame作为所有每月观察的索引和缺失值。 谷歌搜索表明我
我想知道是否有办法在值列表中使用“插入”。我正在尝试这样做: insert into tblMyTable (Col1, Col2, Col3) values('value1', value
我想让人们能够在他们的网站中插入单个 Javascript 行,这实际上允许我插入包含我网站内容的固定大小的 IFRAME。它实际上是一个小部件,允许他们搜索我的网站或接收其他信息。这可能吗? 最佳答
我有一个包含时间的表,列名为 time,数据类型为 Date。 在 asp.net 中,我想要一个查询插入日期,另一个查询则在 2 个日期之间进行选择。 我已经尝试过这个: string data =
这是我的代码: create or replace trigger th after insert on stock for each row declare sqty number;
这是一个带有具体示例的通用问题。 我有一个包含三个字段(流派 ID (PK IDENTITY)、流派和子流派)的表。该表对(流派,子流派)组合具有唯一约束。 我想知道如何修改存储过程以在表中不存在时插
因此,我正在遍历二叉树,节点包含字符串,以及读取文件时该字符串是否出现多次。我只查找读取文件时出现次数最多的前 10 个单词,因此本质上我只是比较 int 值。 我的问题是我正在尝试找出一种有效的方法
我有一张机票和行李 map , 每张门票必须是唯一的,并且必须与 map 上的位置相对应 是否可以仅更改行李(m_bagage->秒)而不更改 key ? std::unordered_map m_c
我正在使用 jdbc 驱动程序做一个示例项目。我的问题是,如果我在 2 文本字段中输入空值。 null 不应该加载到数据库中吗?有没有办法避免在数据库中插入空字段?任何帮助将不胜感激。 //Execu
我想知道 SSIS 中是否有特定的插入或更新选项。 如果我想让程序检查它是更新还是插入,我是否必须做一些编码?或者是否可以启用一个选项,以便它会自行检查 PK 是否存在,然后更新,否则插入? 亲切的问
我是一名优秀的程序员,十分优秀!