/external/v8/src/compiler/ia32/ |
D | code-generator-ia32.cc | 1620 Label* tlabel = branch->true_label; in AssembleArchBranch() local 1627 __ j(equal, tlabel); in AssembleArchBranch() 1630 __ j(parity_even, tlabel); in AssembleArchBranch() 1633 __ j(not_equal, tlabel); in AssembleArchBranch() 1636 __ j(less, tlabel); in AssembleArchBranch() 1639 __ j(greater_equal, tlabel); in AssembleArchBranch() 1642 __ j(less_equal, tlabel); in AssembleArchBranch() 1645 __ j(greater, tlabel); in AssembleArchBranch() 1648 __ j(below, tlabel); in AssembleArchBranch() 1651 __ j(above_equal, tlabel); in AssembleArchBranch() [all …]
|
/external/v8/src/compiler/mips/ |
D | code-generator-mips.cc | 1635 Label* tlabel = branch->true_label; in AssembleArchBranch() local 1648 __ Branch(tlabel, cc, at, Operand(zero_reg)); in AssembleArchBranch() 1653 i.InputOperand(1), tlabel, flabel); in AssembleArchBranch() 1657 i.InputOperand(1), flabel, tlabel); in AssembleArchBranch() 1667 i.InputOperand(1), tlabel, flabel); in AssembleArchBranch() 1671 i.InputOperand(1), flabel, tlabel); in AssembleArchBranch() 1681 i.InputOperand(1), tlabel, flabel); in AssembleArchBranch() 1685 i.InputOperand(1), flabel, tlabel); in AssembleArchBranch() 1693 __ Branch(tlabel, cc, i.InputRegister(0), i.InputOperand(1)); in AssembleArchBranch() 1704 __ BranchF32(tlabel, nullptr, cc, left, right); in AssembleArchBranch() [all …]
|
/external/v8/src/compiler/mips64/ |
D | code-generator-mips64.cc | 1942 Label* tlabel = branch->true_label; in AssembleArchBranch() local 1955 __ Branch(tlabel, cc, at, Operand(zero_reg)); in AssembleArchBranch() 1961 __ Branch(tlabel, cc, at, Operand(kScratchReg)); in AssembleArchBranch() 1966 i.InputOperand(1), tlabel, flabel); in AssembleArchBranch() 1970 i.InputOperand(1), flabel, tlabel); in AssembleArchBranch() 1980 i.InputOperand(1), tlabel, flabel); in AssembleArchBranch() 1984 i.InputOperand(1), flabel, tlabel); in AssembleArchBranch() 1994 i.InputOperand(1), tlabel, flabel, kScratchReg); in AssembleArchBranch() 1998 i.InputOperand(1), flabel, tlabel, kScratchReg); in AssembleArchBranch() 2006 __ Branch(tlabel, cc, i.InputRegister(0), i.InputOperand(1)); in AssembleArchBranch() [all …]
|
/external/v8/src/compiler/x87/ |
D | code-generator-x87.cc | 2043 Label* tlabel = &tlabel_tmp; in AssembleArchBranch() local 2054 __ j(equal, tlabel); in AssembleArchBranch() 2057 __ j(parity_even, tlabel); in AssembleArchBranch() 2060 __ j(not_equal, tlabel); in AssembleArchBranch() 2063 __ j(less, tlabel); in AssembleArchBranch() 2066 __ j(greater_equal, tlabel); in AssembleArchBranch() 2069 __ j(less_equal, tlabel); in AssembleArchBranch() 2072 __ j(greater, tlabel); in AssembleArchBranch() 2075 __ j(below, tlabel); in AssembleArchBranch() 2078 __ j(above_equal, tlabel); in AssembleArchBranch() [all …]
|
/external/v8/src/compiler/x64/ |
D | code-generator-x64.cc | 2192 Label* tlabel = branch->true_label; in AssembleArchBranch() local 2199 __ j(equal, tlabel); in AssembleArchBranch() 2202 __ j(parity_even, tlabel); in AssembleArchBranch() 2205 __ j(not_equal, tlabel); in AssembleArchBranch() 2208 __ j(less, tlabel); in AssembleArchBranch() 2211 __ j(greater_equal, tlabel); in AssembleArchBranch() 2214 __ j(less_equal, tlabel); in AssembleArchBranch() 2217 __ j(greater, tlabel); in AssembleArchBranch() 2220 __ j(below, tlabel); in AssembleArchBranch() 2223 __ j(above_equal, tlabel); in AssembleArchBranch() [all …]
|
/external/v8/src/compiler/arm64/ |
D | code-generator-arm64.cc | 1644 Label* tlabel = branch->true_label; in AssembleArchBranch() local 1652 __ Cbz(i.InputRegister32(0), tlabel); in AssembleArchBranch() 1655 __ Cbnz(i.InputRegister32(0), tlabel); in AssembleArchBranch() 1663 __ Cbz(i.InputRegister64(0), tlabel); in AssembleArchBranch() 1666 __ Cbnz(i.InputRegister64(0), tlabel); in AssembleArchBranch() 1674 __ Tbz(i.InputRegister32(0), i.InputInt5(1), tlabel); in AssembleArchBranch() 1677 __ Tbnz(i.InputRegister32(0), i.InputInt5(1), tlabel); in AssembleArchBranch() 1685 __ Tbz(i.InputRegister64(0), i.InputInt6(1), tlabel); in AssembleArchBranch() 1688 __ Tbnz(i.InputRegister64(0), i.InputInt6(1), tlabel); in AssembleArchBranch() 1695 __ B(cc, tlabel); in AssembleArchBranch()
|
/external/v8/src/compiler/s390/ |
D | code-generator-s390.cc | 2132 Label* tlabel = branch->true_label; in AssembleArchBranch() local 2144 __ bunordered(tlabel); in AssembleArchBranch() 2147 __ b(cond, tlabel); in AssembleArchBranch()
|
/external/v8/src/compiler/ppc/ |
D | code-generator-ppc.cc | 1961 Label* tlabel = branch->true_label; in AssembleArchBranch() local 1974 __ bunordered(tlabel, cr); in AssembleArchBranch() 1978 __ b(cond, tlabel, cr); in AssembleArchBranch()
|
/external/v8/src/compiler/arm/ |
D | code-generator-arm.cc | 1581 Label* tlabel = branch->true_label; in AssembleArchBranch() local 1584 __ b(cc, tlabel); in AssembleArchBranch()
|