[3] | 1 | #include "../BasicCompiler_Common/common.h"
|
---|
| 2 | #include "Opcode.h"
|
---|
| 3 |
|
---|
| 4 | BOOL CalcTwoTerm_Logical(int idCalc,int *type,LONG_PTR *index_stack,int *pStackPointer){
|
---|
| 5 | //value[sp-2] xor= value[sp-1]
|
---|
| 6 | //xor演算
|
---|
| 7 |
|
---|
| 8 | int sp;
|
---|
| 9 | sp=*pStackPointer;
|
---|
| 10 |
|
---|
| 11 | if(IsRealNumberType(type[sp-2])||IsRealNumberType(type[sp-1])){
|
---|
| 12 | //いずれかの項が実数のとき
|
---|
| 13 | SetError(45,"xor",cp);
|
---|
| 14 | return 0;
|
---|
| 15 | }
|
---|
| 16 |
|
---|
| 17 | int reg1,reg2;
|
---|
| 18 |
|
---|
| 19 | if(Is64Type(type[sp-2])||Is64Type(type[sp-1])){
|
---|
| 20 | //////////////////////
|
---|
| 21 | // 64ビット整数演算
|
---|
| 22 | //////////////////////
|
---|
| 23 |
|
---|
| 24 | SetTowTermToReg_Whole64Calc(type,sp,®1,®2);
|
---|
| 25 |
|
---|
| 26 | if(idCalc==CALC_XOR){
|
---|
| 27 | //xor reg1,reg2
|
---|
| 28 | op_xor_reg(sizeof(_int64),reg1,reg2);
|
---|
| 29 | }
|
---|
| 30 | else if(idCalc==CALC_OR){
|
---|
| 31 | //or reg1,reg2
|
---|
| 32 | op_or_reg(sizeof(_int64),reg1,reg2);
|
---|
| 33 | }
|
---|
| 34 | else if(idCalc==CALC_AND){
|
---|
| 35 | //and reg1,reg2
|
---|
| 36 | op_and_reg(sizeof(_int64),reg1,reg2);
|
---|
| 37 | }
|
---|
| 38 |
|
---|
| 39 | if(reg1==REG_R14){
|
---|
| 40 | //mov qword ptr[rsp+offset],r14 ※スタックフレームを利用
|
---|
| 41 | pobj_sf->push(REG_R14);
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | sp--;
|
---|
| 45 | type[sp-1]=NeutralizationType(type[sp-1],index_stack[sp-1],type[sp],index_stack[sp]);
|
---|
| 46 | }
|
---|
| 47 | else{
|
---|
| 48 | //32ビット以下の整数演算
|
---|
| 49 |
|
---|
| 50 | SetTowTermToReg_Whole32Calc(type,sp,®1,®2);
|
---|
| 51 |
|
---|
| 52 | if(idCalc==CALC_ADDITION){
|
---|
| 53 | //add reg1,reg2
|
---|
| 54 | op_xor_reg(sizeof(long),reg1,reg2);
|
---|
| 55 | }
|
---|
| 56 | else if(idCalc==CALC_OR){
|
---|
| 57 | //or reg1,reg2
|
---|
| 58 | op_or_reg(sizeof(long),reg1,reg2);
|
---|
| 59 | }
|
---|
| 60 | else if(idCalc==CALC_AND){
|
---|
| 61 | //and reg1,reg2
|
---|
| 62 | op_and_reg(sizeof(long),reg1,reg2);
|
---|
| 63 | }
|
---|
| 64 |
|
---|
| 65 | if(reg1==REG_R14){
|
---|
| 66 | //mov qword ptr[rsp+offset],r14 ※スタックフレームを利用
|
---|
| 67 | pobj_sf->push(REG_R14);
|
---|
| 68 | }
|
---|
| 69 |
|
---|
| 70 | sp--;
|
---|
| 71 | type[sp-1]=NeutralizationType(type[sp-1],index_stack[sp-1],type[sp],index_stack[sp]);
|
---|
| 72 | }
|
---|
| 73 |
|
---|
| 74 | *pStackPointer=sp;
|
---|
| 75 | return 1;
|
---|
| 76 | }
|
---|
| 77 |
|
---|
| 78 | BOOL Calc_Not(int *type,int sp){
|
---|
| 79 | //value[sp-1]=Not value[sp-1]
|
---|
| 80 | //NOT演算子
|
---|
| 81 |
|
---|
| 82 | if(IsRealNumberType(type[sp-1])){
|
---|
| 83 | //実数のとき
|
---|
| 84 | SetError(45,"Not",cp);
|
---|
| 85 | return 0;
|
---|
| 86 | }
|
---|
| 87 |
|
---|
| 88 | int reg;
|
---|
| 89 |
|
---|
[36] | 90 | if( type[sp - 1] == DEF_BOOLEAN ){
|
---|
| 91 | SetOneTermToReg_Whole32Calc(type[sp-1],®);
|
---|
| 92 |
|
---|
| 93 | if( reg != REG_RAX ){
|
---|
| 94 | //mov rax,qword ptr[rsp+offset] ※スタックフレームを利用
|
---|
| 95 | pobj_sf->pop(REG_RAX);
|
---|
| 96 | }
|
---|
| 97 |
|
---|
| 98 | //cmp reg,0
|
---|
| 99 | op_cmp_value(GetTypeSize(type[sp-1],-1),reg,0);
|
---|
| 100 |
|
---|
| 101 | //setne al
|
---|
| 102 | op_setne( REG_RAX );
|
---|
| 103 |
|
---|
| 104 | //and rax,000000FFh
|
---|
| 105 | op_and64_value(REG_RAX,(int)0xFF);
|
---|
| 106 |
|
---|
| 107 | //neg
|
---|
| 108 | op_neg( REG_RAX );
|
---|
| 109 |
|
---|
| 110 | //sbb rax, rax
|
---|
| 111 | op_sbb_RR( sizeof(_int64), REG_RAX, REG_RAX );
|
---|
| 112 |
|
---|
| 113 | //add rax, 1
|
---|
| 114 | op_add64_value( REG_RAX, 1 );
|
---|
| 115 |
|
---|
| 116 | if( reg != REG_RAX ){
|
---|
| 117 | //mov reg,rax
|
---|
| 118 | op_mov_RR( reg, REG_RAX );
|
---|
| 119 |
|
---|
| 120 | //mov qword ptr[rsp+offset],rax ※スタックフレームを利用
|
---|
| 121 | pobj_sf->push(REG_RAX);
|
---|
| 122 | }
|
---|
| 123 |
|
---|
| 124 | if(reg==REG_R14){
|
---|
| 125 | //mov qword ptr[rsp+offset],r14 ※スタックフレームを利用
|
---|
| 126 | pobj_sf->push(REG_R14);
|
---|
| 127 | }
|
---|
| 128 | }
|
---|
| 129 | else if(type[sp-1]==DEF_INT64||type[sp-1]==DEF_QWORD){
|
---|
[3] | 130 | SetOneTermToReg_Whole64Calc(type[sp-1],®);
|
---|
| 131 |
|
---|
| 132 | //not reg
|
---|
| 133 | op_not_reg(sizeof(_int64),reg);
|
---|
| 134 |
|
---|
| 135 | if(reg==REG_R14){
|
---|
| 136 | //mov qword ptr[rsp+offset],r14 ※スタックフレームを利用
|
---|
| 137 | pobj_sf->push(REG_R14);
|
---|
| 138 | }
|
---|
| 139 | }
|
---|
| 140 | else if(IsWholeNumberType(type[sp-1])){
|
---|
| 141 | SetOneTermToReg_Whole32Calc(type[sp-1],®);
|
---|
| 142 |
|
---|
| 143 | //not reg
|
---|
| 144 | op_not_reg(sizeof(long),reg);
|
---|
| 145 |
|
---|
| 146 | if(reg==REG_R14){
|
---|
| 147 | //mov qword ptr[rsp+offset],r14 ※スタックフレームを利用
|
---|
| 148 | pobj_sf->push(REG_R14);
|
---|
| 149 | }
|
---|
| 150 | }
|
---|
| 151 |
|
---|
| 152 | return 1;
|
---|
| 153 | }
|
---|