2
2
* Copyright (c) 2010-2022 Google, Inc. All rights reserved.
3
3
* Copyright (c) 2010 Massachusetts Institute of Technology All rights reserved.
4
4
* Copyright (c) 2000-2010 VMware, Inc. All rights reserved.
5
+ * Copyright (c) 2025 Foundation of Research and Technology, Hellas.
5
6
* ******************************************************************************/
6
7
7
8
/*
@@ -81,6 +82,12 @@ get_clean_call_temp_stack_size(void)
81
82
/* utility routines for inserting clean calls to an instrumentation routine
82
83
* strategy is very similar to fcache_enter/return
83
84
* FIXME: try to share code with fcache_enter/return?
85
+ * TODO i#3544: Return the correct mcontext base when DCONTEXT_TLS_MIDPTR_OFFSET is used.
86
+ * This will need calls like opnd_create_dcontext_field_via_reg_sz to be replaced
87
+ * with something else. Currently we work around that by assuming that we have the
88
+ * dcontext pointer (offseted) instead of the mcontext when DCONTEXT_TLS_MIDPTR_OFFSET is
89
+ * not zero. For that reason we substract DCONTEXT_TLS_MIDPTR_OFFSET in the offsets
90
+ * created at emit_fcache_enter_common().
84
91
*
85
92
* first swap stacks to DynamoRIO stack:
86
93
* SAVE_TO_UPCONTEXT %xsp,xsp_OFFSET
@@ -757,8 +764,9 @@ insert_meta_call_vargs(dcontext_t *dcontext, instrlist_t *ilist, instr_t *instr,
757
764
* We save it to dcontext.mcontext.x0.
758
765
*/
759
766
PRE (ilist , instr ,
760
- XINST_CREATE_store (dcontext , OPND_CREATE_MEMPTR (link_reg , 0 ),
761
- opnd_create_reg (SCRATCH_REG0 )));
767
+ XINST_CREATE_store (
768
+ dcontext , OPND_CREATE_MEMPTR (link_reg , - DCONTEXT_TLS_MIDPTR_OFFSET ),
769
+ opnd_create_reg (SCRATCH_REG0 )));
762
770
instrlist_insert_mov_immed_ptrsz (dcontext , (ptr_int_t )DR_WHERE_CLEAN_CALLEE ,
763
771
opnd_create_reg (SCRATCH_REG0 ), ilist , instr ,
764
772
NULL , NULL );
@@ -769,8 +777,9 @@ insert_meta_call_vargs(dcontext_t *dcontext, instrlist_t *ilist, instr_t *instr,
769
777
WHEREAMI_OFFSET ));
770
778
/* Restore scratch_reg from dcontext.mcontext.x0. */
771
779
PRE (ilist , instr ,
772
- XINST_CREATE_load (dcontext , opnd_create_reg (SCRATCH_REG0 ),
773
- OPND_CREATE_MEMPTR (link_reg , 0 )));
780
+ XINST_CREATE_load (
781
+ dcontext , opnd_create_reg (SCRATCH_REG0 ),
782
+ OPND_CREATE_MEMPTR (link_reg , - DCONTEXT_TLS_MIDPTR_OFFSET )));
774
783
#else
775
784
/* SCRATCH_REG0 is dead here, because clean calls only support "cdecl",
776
785
* which specifies that the caller must save xax (and xcx and xdx).
@@ -823,8 +832,10 @@ insert_meta_call_vargs(dcontext_t *dcontext, instrlist_t *ilist, instr_t *instr,
823
832
* We save it to dcontext.mcontext.x0.
824
833
*/
825
834
PRE (ilist , instr ,
826
- XINST_CREATE_store (dcontext , OPND_CREATE_MEMPTR (SCRATCH_REG0 , 0 ),
827
- opnd_create_reg (SCRATCH_REG1 )));
835
+ XINST_CREATE_store (
836
+ dcontext ,
837
+ OPND_CREATE_MEMPTR (SCRATCH_REG0 , - DCONTEXT_TLS_MIDPTR_OFFSET ),
838
+ opnd_create_reg (SCRATCH_REG1 )));
828
839
instrlist_insert_mov_immed_ptrsz (dcontext , (ptr_int_t )whereami ,
829
840
opnd_create_reg (SCRATCH_REG1 ), ilist , instr ,
830
841
NULL , NULL );
@@ -835,8 +846,9 @@ insert_meta_call_vargs(dcontext_t *dcontext, instrlist_t *ilist, instr_t *instr,
835
846
WHEREAMI_OFFSET ));
836
847
/* Restore scratch_reg from dcontext.mcontext.x0. */
837
848
PRE (ilist , instr ,
838
- XINST_CREATE_load (dcontext , opnd_create_reg (SCRATCH_REG1 ),
839
- OPND_CREATE_MEMPTR (SCRATCH_REG0 , 0 )));
849
+ XINST_CREATE_load (
850
+ dcontext , opnd_create_reg (SCRATCH_REG1 ),
851
+ OPND_CREATE_MEMPTR (SCRATCH_REG0 , - DCONTEXT_TLS_MIDPTR_OFFSET )));
840
852
#else
841
853
PRE (ilist , instr ,
842
854
instr_create_save_immed_to_dc_via_reg (dcontext , SCRATCH_REG0 ,
0 commit comments