Searched refs:LeaveCC (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/v8/src/compiler/arm/
H A Dcode-generator-arm.cc36 return LeaveCC;
39 return LeaveCC;
150 DCHECK_EQ(LeaveCC, i.OutputSBit());
165 DCHECK_EQ(LeaveCC, i.OutputSBit());
170 DCHECK_EQ(LeaveCC, i.OutputSBit());
174 DCHECK_EQ(LeaveCC, i.OutputSBit());
178 DCHECK_EQ(LeaveCC, i.OutputSBit());
182 DCHECK_EQ(LeaveCC, i.OutputSBit());
208 DCHECK_EQ(LeaveCC, i.OutputSBit());
214 DCHECK_EQ(LeaveCC,
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-disasm-arm.cc105 COMPARE(and_(r1, r2, Operand(r3), LeaveCC),
109 COMPARE(and_(r3, r4, Operand(r5), LeaveCC, eq),
116 COMPARE(eor(r4, r5, Operand(r8, LSL, 2), LeaveCC, ne),
121 COMPARE(sub(r5, r6, Operand(r10, LSL, 31), LeaveCC, hs),
125 COMPARE(sub(r5, r6, Operand(r10, LSL, 24), LeaveCC, lo),
136 COMPARE(rsb(r6, r7, Operand(fp, LSR, 31), LeaveCC, pl),
150 COMPARE(adc(r4, ip, Operand(ip, ASR, 1), LeaveCC, vc),
157 COMPARE(sbc(r7, r1, Operand(ip, ROR, 1), LeaveCC, hi),
211 COMPARE(orr(r7, r8, Operand(lr), LeaveCC, al),
220 COMPARE(mov(r0, Operand(r1), LeaveCC, e
[all...]
H A Dtest-assembler-arm.cc952 __ adc(r1, r1, Operand(r1), LeaveCC, cs);
957 __ adc(r2, r2, Operand(r2), LeaveCC, cs);
1543 __ add(pc, r5, r4, LeaveCC, ne);
/external/chromium_org/v8/src/arm/
H A Dassembler-arm.h854 SBit s = LeaveCC, Condition cond = al);
857 SBit s = LeaveCC, Condition cond = al);
860 SBit s = LeaveCC, Condition cond = al);
862 SBit s = LeaveCC, Condition cond = al) {
867 SBit s = LeaveCC, Condition cond = al);
870 SBit s = LeaveCC, Condition cond = al);
872 SBit s = LeaveCC, Condition cond = al) {
877 SBit s = LeaveCC, Condition cond = al);
880 SBit s = LeaveCC, Condition cond = al);
883 SBit s = LeaveCC, Conditio
861 sub(Register dst, Register src1, Register src2, SBit s = LeaveCC, Condition cond = al) argument
871 add(Register dst, Register src1, Register src2, SBit s = LeaveCC, Condition cond = al) argument
902 orr(Register dst, Register src1, Register src2, SBit s = LeaveCC, Condition cond = al) argument
909 mov(Register dst, Register src, SBit s = LeaveCC, Condition cond = al) argument
930 asr(Register dst, Register src1, const Operand& src2, SBit s = LeaveCC, Condition cond = al) argument
939 lsl(Register dst, Register src1, const Operand& src2, SBit s = LeaveCC, Condition cond = al) argument
948 lsr(Register dst, Register src1, const Operand& src2, SBit s = LeaveCC, Condition cond = al) argument
[all...]
H A Dmacro-assembler-arm.cc42 mov(pc, Operand(target, rmode), LeaveCC, cond);
79 Instr mov_instr = cond | MOV | LeaveCC;
96 Instr mov_instr = cond | MOV | LeaveCC;
184 add(sp, sp, Operand(count * kPointerSize), LeaveCC, cond);
200 eor(reg1, reg1, Operand(reg2), LeaveCC, cond);
201 eor(reg2, reg2, Operand(reg1), LeaveCC, cond);
202 eor(reg1, reg1, Operand(reg2), LeaveCC, cond);
204 mov(scratch, reg1, LeaveCC, cond);
205 mov(reg1, reg2, LeaveCC, cond);
206 mov(reg2, scratch, LeaveCC, con
[all...]
H A Dcode-stubs-arm.cc261 __ orr(scratch(), scratch(), Operand(HeapNumber::kSignMask), LeaveCC, cs); local
263 __ rsb(the_int(), the_int(), Operand::Zero(), LeaveCC, cs); local
412 __ mov(r0, Operand(NOT_EQUAL), LeaveCC, ne);
439 __ mov(r0, Operand(NOT_EQUAL), LeaveCC, ne);
642 __ mov(r0, Operand(EQUAL), LeaveCC, eq);
643 __ mov(r0, Operand(LESS), LeaveCC, lt);
644 __ mov(r0, Operand(GREATER), LeaveCC, gt);
903 __ mov(scratch2, Operand::Zero(), LeaveCC, mi);
904 __ sub(scratch, scratch2, scratch, LeaveCC, mi);
1618 __ mov(r1, Operand(r2), LeaveCC, g
[all...]
H A Dassembler-arm.cc1131 mov(target, Operand(imm32 & kImm8Mask), LeaveCC, cond);
1132 orr(target, target, Operand(imm32 & (kImm8Mask << 8)), LeaveCC, cond);
1133 orr(target, target, Operand(imm32 & (kImm8Mask << 16)), LeaveCC, cond);
1134 orr(target, target, Operand(imm32 & (kImm8Mask << 24)), LeaveCC, cond);
1137 mov(rd, target, LeaveCC, cond);
1150 mov(target, Operand(0), LeaveCC, cond);
1151 orr(target, target, Operand(0), LeaveCC, cond);
1152 orr(target, target, Operand(0), LeaveCC, cond);
1153 orr(target, target, Operand(0), LeaveCC, cond);
1186 mov(ip, x, LeaveCC, con
[all...]
H A Dmacro-assembler-arm.h156 void Move(Register dst, const Operand& src, SBit sbit = LeaveCC, argument
158 if (!src.is_reg() || !src.rm().is(dst) || sbit != LeaveCC) {
1220 void SmiTag(Register reg, SBit s = LeaveCC) { argument
1223 void SmiTag(Register dst, Register src, SBit s = LeaveCC) { argument
1240 void SmiUntag(Register reg, SBit s = LeaveCC) { argument
1243 void SmiUntag(Register dst, Register src, SBit s = LeaveCC) { argument
H A Dconstants-arm.h216 LeaveCC = 0 << 20 // Leave condition code unchanged. enumerator in enum:v8::internal::SBit
H A Ddeoptimizer-arm.cc154 __ sub(sp, sp, Operand(16 * kDoubleSize), LeaveCC, eq);
H A Dlithium-codegen-arm.cc865 __ mov(scratch, Operand::Zero(), LeaveCC, NegateCondition(condition));
866 __ mov(scratch, Operand(1), LeaveCC, condition);
874 __ mov(r1, Operand(FLAG_deopt_every_n_times), LeaveCC, eq);
1507 __ mov(result, Operand(kMinInt / divisor), LeaveCC, vs);
1508 __ mov(result, Operand(result, ASR, shift), LeaveCC, vc);
1857 SBit set_cond = can_overflow ? SetCC : LeaveCC;
1878 SBit set_cond = can_overflow ? SetCC : LeaveCC;
2051 SBit set_cond = can_overflow ? SetCC : LeaveCC;
2080 __ mov(result_reg, right_op, LeaveCC, NegateCondition(condition));
2777 __ mov(r0, Operand(factory()->false_value()), LeaveCC, n
[all...]
H A Dregexp-macro-assembler-arm.cc220 backtrack_stackpointer(), Operand(kPointerSize), LeaveCC, eq);
662 __ mov(current_character(), Operand('\n'), LeaveCC, eq);
H A Dfull-codegen-arm.cc2431 __ mov(right, Operand(scratch1), LeaveCC, ne);
2434 __ mov(right, Operand(Smi::FromInt(0)), LeaveCC, pl);

Completed in 195 milliseconds