Home | History | Annotate | Download | only in cctest

Lines Matching defs:__

64 #define __ assm.
73 __ addu(v0, a0, a1);
74 __ jr(ra);
75 __ nop();
101 __ mov(a1, a0);
102 __ li(v0, 0);
103 __ b(&C);
104 __ nop();
106 __ bind(&L);
107 __ add(v0, v0, a1);
108 __ addiu(a1, a1, -1);
110 __ bind(&C);
111 __ xori(v1, a1, 0);
112 __ Branch(ne, &L, v1, Operand(0));
113 __ nop();
115 __ jr(ra);
116 __ nop();
148 __ ori(t0, zero_reg, 0);
149 __ lui(t0, 0x1234);
150 __ ori(t0, t0, 0);
151 __ ori(t0, t0, 0x0f0f);
152 __ ori(t0, t0, 0xf0f0);
153 __ addiu(t1, t0, 1);
154 __ addiu(t2, t1, -0x10);
157 __ li(t0, 0x00000004);
158 __ li(t1, 0x00001234);
159 __ li(t2, 0x12345678);
160 __ li(t3, 0x7fffffff);
161 __ li(t4, 0xfffffffc);
162 __ li(t5, 0xffffedcc);
163 __ li(t6, 0xedcba988);
164 __ li(t7, 0x80000000);
167 __ srl(v0, t2, 8); // 0x00123456
168 __ sll(v0, v0, 11); // 0x91a2b000
169 __ sra(v0, v0, 3); // 0xf2345600
170 __ srav(v0, v0, t0); // 0xff234560
171 __ sllv(v0, v0, t0); // 0xf2345600
172 __ srlv(v0, v0, t0); // 0x0f234560
173 __ Branch(ne, &error, v0, Operand(0x0f234560));
174 __ nop();
176 __ add(v0, t0, t1); // 0x00001238
177 __ sub(v0, v0, t0); // 0x00001234
178 __ Branch(ne, &error, v0, Operand(0x00001234));
179 __ nop();
180 __ addu(v1, t3, t0);
181 __ Branch(ne, &error, v1, Operand(0x80000003));
182 __ nop();
183 __ subu(v1, t7, t0); // 0x7ffffffc
184 __ Branch(ne, &error, v1, Operand(0x7ffffffc));
185 __ nop();
187 __ and_(v0, t1, t2); // 0x00001230
188 __ or_(v0, v0, t1); // 0x00001234
189 __ xor_(v0, v0, t2); // 0x1234444c
190 __ nor(v0, v0, t2); // 0xedcba987
191 __ Branch(ne, &error, v0, Operand(0xedcba983));
192 __ nop();
194 __ slt(v0, t7, t3);
195 __ Branch(ne, &error, v0, Operand(0x1));
196 __ nop();
197 __ sltu(v0, t7, t3);
198 __ Branch(ne, &error, v0, Operand(0x0));
199 __ nop();
202 __ addi(v0, zero_reg, 0x7421); // 0x00007421
203 __ addi(v0, v0, -0x1); // 0x00007420
204 __ addiu(v0, v0, -0x20); // 0x00007400
205 __ Branch(ne, &error, v0, Operand(0x00007400));
206 __ nop();
207 __ addiu(v1, t3, 0x1); // 0x80000000
208 __ Branch(ne, &error, v1, Operand(0x80000000));
209 __ nop();
211 __ slti(v0, t1, 0x00002000); // 0x1
212 __ slti(v0, v0, 0xffff8000); // 0x0
213 __ Branch(ne, &error, v0, Operand(0x0));
214 __ nop();
215 __ sltiu(v0, t1, 0x00002000); // 0x1
216 __ sltiu(v0, v0, 0x00008000); // 0x1
217 __ Branch(ne, &error, v0, Operand(0x1));
218 __ nop();
220 __ andi(v0, t1, 0xf0f0); // 0x00001030
221 __ ori(v0, v0, 0x8a00); // 0x00009a30
222 __ xori(v0, v0, 0x83cc); // 0x000019fc
223 __ Branch(ne, &error, v0, Operand(0x000019fc));
224 __ nop();
225 __ lui(v1, 0x8123); // 0x81230000
226 __ Branch(ne, &error, v1, Operand(0x81230000));
227 __ nop();
230 __ li(v0, 0x31415926);
231 __ b(&exit);
232 __ nop();
234 __ bind(&error);
237 __ bind(&exit);
238 __ jr(ra);
239 __ nop();
257 #undef __