summaryrefslogtreecommitdiff
path: root/PCodeInfo.c
diff options
context:
space:
mode:
Diffstat (limited to 'PCodeInfo.c')
-rw-r--r--PCodeInfo.c55
1 files changed, 0 insertions, 55 deletions
diff --git a/PCodeInfo.c b/PCodeInfo.c
deleted file mode 100644
index 9d469bc..0000000
--- a/PCodeInfo.c
+++ /dev/null
@@ -1,55 +0,0 @@
-#include "PCodeInfo.h"
-
-void pcode_get_hi_lo(int a1, char a2, int *pA, int *pB) {
-
-}
-
-int pcode_check_imm_bits(int a1, int a2, int a3) {
-
-}
-
-int pcode_const_from_format(char *buf, int *pResult) {
-
-}
-
-PCode *vformatpcode(short opcode, va_list argList) {
-
-}
-
-int expectandformatoperand(PCodeArg *operand, unsigned char expectedKind, char a3, int bitCount, char *buf) {
-}
-
-int formatoperand(PCodeArg *operand, char *buf) {
-
-}
-
-void formatoperands(PCode *pcode, char *buf, int showBasicBlocks) {
-
-}
-
-PCode *makecopyinstruction(PCodeArg *a, PCodeArg *b) {
-
-}
-
-int is_location_independent(PCode *pcode) {
-
-}
-
-int can_reuse_stored_value(PCode *a, PCode *b) {
-
-}
-
-int nbytes_loaded_or_stored_by(PCode *pcode) {
-
-}
-
-void change_num_operands(PCode *pcode, int newNum) {
-
-}
-
-void change_opcode(PCode *pcode, short opcode) {
- pcode->flags = (pcode->flags & ~(opcodeinfo[pcode->op].flags & ~fIsPtrOp)) | opcodeinfo[opcode].flags;
- if ((pcode->flags & fPCodeFlag10) && (pcode->flags & (fPCodeFlag1 | fPCodeFlag8)))
- pcode->flags &= ~fPCodeFlag10;
- pcode->op = opcode;
-}