• Home
  • Raw
  • Download

Lines Matching full:e1

1127 void LLVMIRBuilder::VisitMod(GateRef gate, GateRef e1, GateRef e2)  in VisitMod()  argument
1129 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitMod()
1132 ASSERT(ConvertLLVMTypeFromGate(gate) == ConvertLLVMTypeFromGate(e1)); in VisitMod()
1270 void LLVMIRBuilder::VisitIntRev(GateRef gate, GateRef e1) in VisitIntRev() argument
1272 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitIntRev()
1273 ASSERT(ConvertLLVMTypeFromGate(gate) == ConvertLLVMTypeFromGate(e1)); in VisitIntRev()
1381 void LLVMIRBuilder::VisitTruncFloatToInt(GateRef gate, GateRef e1) in VisitTruncFloatToInt() argument
1383 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitTruncFloatToInt()
1384 auto machineType = acc_.GetMachineType(e1); in VisitTruncFloatToInt()
1408 void LLVMIRBuilder::VisitAdd(GateRef gate, GateRef e1, GateRef e2) in VisitAdd() argument
1410 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitAdd()
1422 auto e1Type = LLVMGetTypeKind(ConvertLLVMTypeFromGate(e1)); in VisitAdd()
1450 void LLVMIRBuilder::VisitSub(GateRef gate, GateRef e1, GateRef e2) in VisitSub() argument
1452 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitSub()
1486 void LLVMIRBuilder::VisitMul(GateRef gate, GateRef e1, GateRef e2) in VisitMul() argument
1488 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitMul()
1610 void LLVMIRBuilder::VisitCmp(GateRef gate, GateRef e1, GateRef e2) in VisitCmp() argument
1612 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitCmp()
1615 [[maybe_unused]]auto e1ValCode = acc_.GetMachineType(e1); in VisitCmp()
1675 void LLVMIRBuilder::VisitIntDiv(GateRef gate, GateRef e1, GateRef e2) in VisitIntDiv() argument
1677 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitIntDiv()
1683 void LLVMIRBuilder::VisitUDiv(GateRef gate, GateRef e1, GateRef e2) in VisitUDiv() argument
1685 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitUDiv()
1691 void LLVMIRBuilder::VisitFloatDiv(GateRef gate, GateRef e1, GateRef e2) in VisitFloatDiv() argument
1693 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitFloatDiv()
1700 void LLVMIRBuilder::VisitIntOr(GateRef gate, GateRef e1, GateRef e2) in VisitIntOr() argument
1702 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitIntOr()
1715 void LLVMIRBuilder::VisitIntAnd(GateRef gate, GateRef e1, GateRef e2) in VisitIntAnd() argument
1717 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitIntAnd()
1723 void LLVMIRBuilder::VisitIntXor(GateRef gate, GateRef e1, GateRef e2) in VisitIntXor() argument
1725 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitIntXor()
1731 void LLVMIRBuilder::VisitIntLsr(GateRef gate, GateRef e1, GateRef e2) in VisitIntLsr() argument
1733 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitIntLsr()
1739 void LLVMIRBuilder::VisitIntAsr(GateRef gate, GateRef e1, GateRef e2) in VisitIntAsr() argument
1741 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitIntAsr()
1754 void LLVMIRBuilder::VisitIntLsl(GateRef gate, GateRef e1, GateRef e2) in VisitIntLsl() argument
1756 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitIntLsl()
1762 void LLVMIRBuilder::VisitZExtInt(GateRef gate, GateRef e1) in VisitZExtInt() argument
1764 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitZExtInt()
1765 ASSERT(GetBitWidthFromMachineType(acc_.GetMachineType(e1)) <= in VisitZExtInt()
1771 void LLVMIRBuilder::VisitSExtInt(GateRef gate, GateRef e1) in VisitSExtInt() argument
1773 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitSExtInt()
1783 void LLVMIRBuilder::VisitCastIntXToIntY(GateRef gate, GateRef e1) in VisitCastIntXToIntY() argument
1785 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitCastIntXToIntY()
1786 ASSERT(GetBitWidthFromMachineType(acc_.GetMachineType(e1)) >= in VisitCastIntXToIntY()
1797 void LLVMIRBuilder::VisitFPExt(GateRef gate, GateRef e1) in VisitFPExt() argument
1799 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitFPExt()
1800 ASSERT(GetBitWidthFromMachineType(acc_.GetMachineType(e1)) <= in VisitFPExt()
1811 void LLVMIRBuilder::VisitFPTrunc(GateRef gate, GateRef e1) in VisitFPTrunc() argument
1813 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitFPTrunc()
1814 ASSERT(GetBitWidthFromMachineType(acc_.GetMachineType(e1)) >= in VisitFPTrunc()
1820 void LLVMIRBuilder::VisitChangeInt32ToDouble(GateRef gate, GateRef e1) in VisitChangeInt32ToDouble() argument
1822 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitChangeInt32ToDouble()
1827 void LLVMIRBuilder::VisitChangeUInt32ToDouble(GateRef gate, GateRef e1) in VisitChangeUInt32ToDouble() argument
1829 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitChangeUInt32ToDouble()
1834 void LLVMIRBuilder::VisitChangeDoubleToInt32(GateRef gate, GateRef e1) in VisitChangeDoubleToInt32() argument
1836 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitChangeDoubleToInt32()
1841 void LLVMIRBuilder::VisitChangeTaggedPointerToInt64(GateRef gate, GateRef e1) in VisitChangeTaggedPointerToInt64() argument
1843 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitChangeTaggedPointerToInt64()
1848 void LLVMIRBuilder::VisitChangeInt64ToTagged(GateRef gate, GateRef e1) in VisitChangeInt64ToTagged() argument
1850 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitChangeInt64ToTagged()
1874 void LLVMIRBuilder::VisitBitCast(GateRef gate, GateRef e1) in VisitBitCast() argument
1876 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitBitCast()
1878 GetBitWidthFromMachineType(acc_.GetMachineType(e1))); in VisitBitCast()