update() private method

private update ( TargetMemoryAccess target ) : void
target TargetMemoryAccess
return void
Example #1
0
        public static MonoVariableLocation Create(TargetMemoryAccess target, bool is_regoffset,
							   Register register, long regoffset,
							   bool is_byref)
        {
            MonoVariableLocation location = new MonoVariableLocation (
                is_regoffset, register, regoffset, is_byref);
            location.update (target);
            return location;
        }
Example #2
0
        public static MonoVariableLocation Create(TargetMemoryAccess target, bool is_regoffset,
                                                  Register register, long regoffset,
                                                  bool is_byref)
        {
            MonoVariableLocation location = new MonoVariableLocation(
                is_regoffset, register, regoffset, is_byref);

            location.update(target);
            return(location);
        }