Searched defs:comparand (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/v8/src/x64/
H A Dregexp-macro-assembler-x64.cc993 int comparand,
995 __ cmpp(register_location(reg), Immediate(comparand));
1001 int comparand,
1003 __ cmpp(register_location(reg), Immediate(comparand));
992 IfRegisterGE(int reg, int comparand, Label* if_ge) argument
1000 IfRegisterLT(int reg, int comparand, Label* if_lt) argument
/external/chromium_org/v8/src/arm/
H A Dregexp-macro-assembler-arm.cc863 int comparand,
866 __ cmp(r0, Operand(comparand));
872 int comparand,
875 __ cmp(r0, Operand(comparand));
862 IfRegisterGE(int reg, int comparand, Label* if_ge) argument
871 IfRegisterLT(int reg, int comparand, Label* if_lt) argument
/external/chromium_org/v8/src/ia32/
H A Dregexp-macro-assembler-ia32.cc918 int comparand,
920 __ cmp(register_location(reg), Immediate(comparand));
926 int comparand,
928 __ cmp(register_location(reg), Immediate(comparand));
917 IfRegisterGE(int reg, int comparand, Label* if_ge) argument
925 IfRegisterLT(int reg, int comparand, Label* if_lt) argument
/external/chromium_org/v8/src/mips/
H A Dregexp-macro-assembler-mips.cc879 int comparand,
882 BranchOrBacktrack(if_ge, ge, a0, Operand(comparand));
887 int comparand,
890 BranchOrBacktrack(if_lt, lt, a0, Operand(comparand));
878 IfRegisterGE(int reg, int comparand, Label* if_ge) argument
886 IfRegisterLT(int reg, int comparand, Label* if_lt) argument
/external/chromium_org/v8/src/mips64/
H A Dregexp-macro-assembler-mips64.cc925 int comparand,
928 BranchOrBacktrack(if_ge, ge, a0, Operand(comparand));
933 int comparand,
936 BranchOrBacktrack(if_lt, lt, a0, Operand(comparand));
924 IfRegisterGE(int reg, int comparand, Label* if_ge) argument
932 IfRegisterLT(int reg, int comparand, Label* if_lt) argument
/external/chromium_org/v8/src/
H A Dregexp-macro-assembler-irregexp.cc392 int comparand,
397 Emit32(comparand);
403 int comparand,
408 Emit32(comparand);
391 IfRegisterLT(int register_index, int comparand, Label* on_less_than) argument
402 IfRegisterGE(int register_index, int comparand, Label* on_greater_or_equal) argument
H A Dregexp-macro-assembler-tracer.cc379 int comparand, Label* if_lt) {
381 register_index, comparand, LabelToInt(if_lt));
382 assembler_->IfRegisterLT(register_index, comparand, if_lt);
395 int comparand, Label* if_ge) {
397 register_index, comparand, LabelToInt(if_ge));
398 assembler_->IfRegisterGE(register_index, comparand, if_ge);
378 IfRegisterLT(int register_index, int comparand, Label* if_lt) argument
394 IfRegisterGE(int register_index, int comparand, Label* if_ge) argument
/external/chromium_org/v8/src/x87/
H A Dregexp-macro-assembler-x87.cc917 int comparand,
919 __ cmp(register_location(reg), Immediate(comparand));
925 int comparand,
927 __ cmp(register_location(reg), Immediate(comparand));
916 IfRegisterGE(int reg, int comparand, Label* if_ge) argument
924 IfRegisterLT(int reg, int comparand, Label* if_lt) argument
/external/chromium_org/v8/src/arm64/
H A Dregexp-macro-assembler-arm64.cc1055 void RegExpMacroAssemblerARM64::IfRegisterGE(int reg, int comparand, argument
1058 CompareAndBranchOrBacktrack(to_compare, comparand, ge, if_ge);
1062 void RegExpMacroAssemblerARM64::IfRegisterLT(int reg, int comparand, argument
1065 CompareAndBranchOrBacktrack(to_compare, comparand, lt, if_lt);

Completed in 1486 milliseconds