Home | History | Annotate | Download | only in arm

Lines Matching refs:Print

32 // The example below will disassemble a block of code and print it to stdout.
94 // Bottleneck functions to print into the out_buffer.
96 void Print(const char* str);
153 void Decoder::Print(const char* str) {
171 // Print the condition guarding the instruction.
173 Print(cond_names[instr->ConditionField()]);
177 // Print the register name according to the active name converter.
179 Print(converter_.NameOfCPURegister(reg));
182 // Print the VFP S register name according to the active name converter.
184 Print(assembler::arm::VFPRegisters::Name(reg));
187 // Print the VFP D register name according to the active name converter.
189 Print(assembler::arm::VFPRegisters::Name(reg + 32));
200 // Print the register shift operands for the instruction. Generally used for
216 Print(", RRX");
234 // Print the immediate operand for the instruction. Generally used for data
245 // Print PU formatting to reduce complexity of FormatOption.
249 Print("da");
253 Print("ia");
257 Print("db");
261 Print("ib");
272 // Print SoftwareInterrupt codes. Factoring this out reduces the complexity of
277 Print("call_rt_redirected");
280 Print("break_point");
320 Print("{");
321 // Print register list in ascending order, by scanning the bit mask.
326 Print(", ");
332 Print("}");
368 Print(format);
382 Print("ul");
384 Print("la");
390 Print("b");
401 Print("h");
403 Print("b");
409 Print("l");
417 Print("ldr");
419 Print("str");
487 Print("s");
493 Print("s");
521 Print("u");
523 Print("s");
536 Print("!");
568 // which will just print "unknown" of the instruction bits.
1066 // Print raw instruction bytes.