Home
last modified time | relevance | path

Searched refs:tlabel (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/compiler/ia32/
Dcode-generator-ia32.cc1620 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/
Dcode-generator-mips.cc1635 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/
Dcode-generator-mips64.cc1942 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/
Dcode-generator-x87.cc2043 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/
Dcode-generator-x64.cc2192 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/
Dcode-generator-arm64.cc1644 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/
Dcode-generator-s390.cc2132 Label* tlabel = branch->true_label; in AssembleArchBranch() local
2144 __ bunordered(tlabel); in AssembleArchBranch()
2147 __ b(cond, tlabel); in AssembleArchBranch()
/external/v8/src/compiler/ppc/
Dcode-generator-ppc.cc1961 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/
Dcode-generator-arm.cc1581 Label* tlabel = branch->true_label; in AssembleArchBranch() local
1584 __ b(cc, tlabel); in AssembleArchBranch()