Displaying 2 results from an estimated 2 matches for "_tf_bh".
2010 Dec 15
3
[LLVMdev] opinions on turning on encoding info by default in -S
...be used to dump out the encodings for every instruction. If you're using clang, this can be accessed with the (intentionally) hidden -mllvm option like so:
$ clang t.c -S -o - -mllvm -show-mc-encoding -mkernel -O3 -fomit-frame-pointer
.section __TEXT,__text,regular,pure_instructions
.globl _tf_bH
.align 4, 0x90
_tf_bH: ## @tf_bH
## BB#0: ## %entry
## kill: RSI<def> ESI<kill>
movq _last_tf_arg_u at GOTPCREL(%rip), %rax ## encoding: [0x48,0x8b,0x05,A,A,A,A]...
2010 Dec 16
0
[LLVMdev] opinions on turning on encoding info by default in -S
...the encodings for every instruction. If you're using clang, this can be accessed with the (intentionally) hidden -mllvm option like so:
>
> $ clang t.c -S -o - -mllvm -show-mc-encoding -mkernel -O3 -fomit-frame-pointer
> .section __TEXT,__text,regular,pure_instructions
> .globl _tf_bH
> .align 4, 0x90
> _tf_bH: ## @tf_bH
> ## BB#0: ## %entry
> ## kill: RSI<def> ESI<kill>
> movq _last_tf_arg_u at GOTPCREL(%rip), %rax ## encoding: [0x48,0x8b,0x05,A,A,A...