Home | History | Annotate | Download | only in cctest

Lines Matching refs:compare_string

43 bool DisassembleAndCompare(byte* pc, const char* compare_string) {
55 if (strcmp(compare_string, disasm_buffer.start()) != 0) {
61 compare_string, disasm_buffer.start());
84 #define COMPARE(asm_, compare_string) \
89 if (!DisassembleAndCompare(progcounter, compare_string)) failure = true; \
101 #define COMPARE_PC_REL_COMPACT(asm_, compare_string, offset) \
109 compare_string, progcounter + 8 + (offset * 4)); \
112 compare_string, progcounter + 4 + (offset * 4)); \
119 #define COMPARE_PC_REL(asm_, compare_string, offset) \
125 compare_string, progcounter + (offset * 4)); \
131 #define COMPARE_PC_JUMP(asm_, compare_string, target) \
139 compare_string, reinterpret_cast<byte *>(target), \