49 lines
1.3 KiB
C
49 lines
1.3 KiB
C
|
/****************************************************************
|
||
|
* *
|
||
|
* Copyright 2001, 2009 Fidelity Information Services, Inc *
|
||
|
* *
|
||
|
* This source code contains the intellectual property *
|
||
|
* of its copyright holder(s), and is made available *
|
||
|
* under a license. If you do not know the terms of *
|
||
|
* the license, please stop and do not read further. *
|
||
|
* *
|
||
|
****************************************************************/
|
||
|
|
||
|
#include "mdef.h"
|
||
|
#include "stringpool.h"
|
||
|
#include "op.h"
|
||
|
|
||
|
GBLREF spdesc stringpool;
|
||
|
|
||
|
void op_fnzbitnot(mval *dst,mval *bitstr)
|
||
|
{
|
||
|
int n, str_len;
|
||
|
unsigned char *byte_1, *byte_n, *dist_byte, byte_len;
|
||
|
|
||
|
error_def(ERR_INVBITSTR);
|
||
|
|
||
|
MV_FORCE_STR(bitstr);
|
||
|
if (!bitstr->str.len)
|
||
|
rts_error(VARLSTCNT(1) ERR_INVBITSTR);
|
||
|
|
||
|
byte_len = *(unsigned char *)bitstr->str.addr;
|
||
|
str_len = (bitstr->str.len - 1) * 8;
|
||
|
if (7 < byte_len)
|
||
|
rts_error(VARLSTCNT(1) ERR_INVBITSTR);
|
||
|
|
||
|
ENSURE_STP_FREE_SPACE(bitstr->str.len);
|
||
|
byte_1 = (unsigned char *)bitstr->str.addr;
|
||
|
dist_byte = (unsigned char *)stringpool.free;
|
||
|
*dist_byte = *byte_1;
|
||
|
dist_byte++;
|
||
|
|
||
|
n = bitstr->str.len;
|
||
|
for (byte_n = byte_1 + 1; byte_n <= (byte_1 + n); byte_n++, dist_byte++)
|
||
|
*dist_byte = ~(*byte_n);
|
||
|
|
||
|
dst->mvtype = MV_STR;
|
||
|
dst->str.addr = (char *)stringpool.free;
|
||
|
dst->str.len = bitstr->str.len;
|
||
|
stringpool.free += bitstr->str.len;
|
||
|
}
|