原文地址 While implementing the x64 built-in assembler for Delphi 64bit, I got to “know” the AMD64/EM64T architecture a lot more. The good thing about the x64 architecture is that it really builds on the existing instruction format and design. However, u…
原文地址 The Windows x64 ABI (Application Binary Interface) presents some new challenges for assembly programming that don’t exist for x86. A couple of the changes that must be taken into account can can be seen as very positive. First of all, there is n…
1.使用环境变量'FACTERLIB'创建fact 1.1.在自定义目录里面定义一个fact,列出当前系统登录的用户数 [root@agent1 ~]# vim /var/lib/puppet/kiss_fact/users.rb Facter.add(:users) do setcode do %x{/usr/bin/who |wc -l}.chomp end end [root@agent1 kiss_fact]# facter users #无显示结果,需要设置FACTERLIB [roo…
zhuan http://www.codemachine.com/article_x64deepdive.html X64 Deep Dive This tutorial discusses some of the key aspects of code execution on the X64 CPU like compiler optimizations, exception handling, parameter passing and parameter retrieval and sh…
本文转载自:https://www.codeproject.com/articles/11132/walking-the-callstack Download demo project with source - 64.2 Kb Introduction In some cases you need to display the callstack of the current thread or your are just interested in the callstack of othe…