You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
162 lines
2.6 KiB
162 lines
2.6 KiB
/*
|
|
* Copyright 2002-2019 Intel Corporation.
|
|
*
|
|
* This software is provided to you as Sample Source Code as defined in the accompanying
|
|
* End User License Agreement for the Intel(R) Software Development Products ("Agreement")
|
|
* section 1.L.
|
|
*
|
|
* This software and the related documents are provided as is, with no express or implied
|
|
* warranties, other than those that are expressly stated in the License.
|
|
*/
|
|
|
|
#include <asm_macros.h>
|
|
|
|
# this routine should generate an error because the target of a local branch
|
|
# is within the probe space.
|
|
#
|
|
.global NAME(do_nothing)
|
|
DECLARE_FUNCTION(do_nothing)
|
|
|
|
NAME(do_nothing):
|
|
xor %eax, %eax
|
|
lab1:
|
|
xor %eax, %eax
|
|
test %eax, %eax
|
|
je lab2
|
|
|
|
xor %eax, %eax
|
|
xor %eax, %eax
|
|
jmp lab1
|
|
|
|
lab2:
|
|
xor %eax, %eax
|
|
xor %eax, %eax
|
|
|
|
ret
|
|
|
|
|
|
# This code pattern will result in an error because the call
|
|
# is less than the size of the probe, and when relocated, the
|
|
# push of the original IP will cause a branch into the probe.
|
|
#
|
|
.global NAME(call_function)
|
|
DECLARE_FUNCTION(call_function)
|
|
|
|
NAME(call_function):
|
|
call NAME(do_nothing)
|
|
push %ebx
|
|
pop %ebx
|
|
ret
|
|
|
|
|
|
# Test an unconditional jump in the middle of the probe area.
|
|
#
|
|
.global NAME(good_jump)
|
|
DECLARE_FUNCTION(good_jump)
|
|
|
|
NAME(good_jump):
|
|
xchg %eax, %eax
|
|
jmp lab3
|
|
|
|
push %ebx
|
|
pop %ebx
|
|
|
|
lab3:
|
|
xor %eax, %eax
|
|
xor %eax, %eax
|
|
|
|
ret
|
|
|
|
|
|
|
|
# This code should not be able to be relocated because of the
|
|
# conditional jump as the last instruction.
|
|
#
|
|
.global NAME(fall_thru)
|
|
DECLARE_FUNCTION(fall_thru)
|
|
|
|
NAME(fall_thru):
|
|
xchg %eax, %eax
|
|
jmp lab5
|
|
|
|
push %ebx
|
|
pop %ebx
|
|
|
|
lab5:
|
|
xor %eax, %eax
|
|
xor %eax, %eax
|
|
mov %eax, 0x5
|
|
cmp %eax, 0
|
|
jz lab5
|
|
nop
|
|
|
|
|
|
# This code should not be able to be relocated because of the
|
|
# jump outside of the function.
|
|
#
|
|
.global NAME(bad_jump)
|
|
DECLARE_FUNCTION(bad_jump)
|
|
|
|
NAME(bad_jump):
|
|
xchg %eax, %eax
|
|
jmp lab6
|
|
|
|
push %ebx
|
|
pop %ebx
|
|
|
|
lab6:
|
|
jmp NAME(do_nothing)
|
|
xor %eax, %eax
|
|
xor %eax, %eax
|
|
ret
|
|
|
|
|
|
|
|
# This code should not be able to be relocated because of the
|
|
# call function.
|
|
#
|
|
.global NAME(bad_call)
|
|
DECLARE_FUNCTION(bad_call)
|
|
|
|
NAME(bad_call):
|
|
xchg %eax, %eax
|
|
jmp lab7
|
|
|
|
push %ebx
|
|
pop %ebx
|
|
|
|
lab7:
|
|
call NAME(do_nothing)
|
|
xor %eax, %eax
|
|
xor %eax, %eax
|
|
ret
|
|
|
|
|
|
|
|
# This code should not be able to be relocated because of the
|
|
# target after the last instruction.
|
|
#
|
|
.global NAME(high_target)
|
|
DECLARE_FUNCTION(high_target)
|
|
|
|
NAME(high_target):
|
|
xchg %eax, %eax
|
|
jmp lab8
|
|
|
|
push %ebx
|
|
pop %ebx
|
|
|
|
xor %eax, %eax
|
|
xor %eax, %eax
|
|
mov %eax, 0x5
|
|
cmp %eax, 0
|
|
ret
|
|
|
|
lab8:
|
|
nop
|
|
nop
|
|
nop
|
|
|
|
|
|
|