• Home
  • Raw
  • Download

Lines Matching full:e1

1280 void LLVMIRBuilder::VisitMod(GateRef gate, GateRef e1, GateRef e2)  in VisitMod()  argument
1282 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitMod()
1285 ASSERT(ConvertLLVMTypeFromGate(gate) == ConvertLLVMTypeFromGate(e1)); in VisitMod()
1437 void LLVMIRBuilder::VisitIntRev(GateRef gate, GateRef e1) in VisitIntRev() argument
1439 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitIntRev()
1440 ASSERT(ConvertLLVMTypeFromGate(gate) == ConvertLLVMTypeFromGate(e1)); in VisitIntRev()
1548 void LLVMIRBuilder::VisitTruncFloatToInt(GateRef gate, GateRef e1) in VisitTruncFloatToInt() argument
1550 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitTruncFloatToInt()
1551 auto machineType = acc_.GetMachineType(e1); in VisitTruncFloatToInt()
1576 void LLVMIRBuilder::VisitAdd(GateRef gate, GateRef e1, GateRef e2) in VisitAdd() argument
1578 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitAdd()
1585 auto e1Type = LLVMGetTypeKind(ConvertLLVMTypeFromGate(e1)); in VisitAdd()
1612 void LLVMIRBuilder::VisitSub(GateRef gate, GateRef e1, GateRef e2) in VisitSub() argument
1614 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitSub()
1649 void LLVMIRBuilder::VisitMul(GateRef gate, GateRef e1, GateRef e2) in VisitMul() argument
1651 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitMul()
1731 void LLVMIRBuilder::VisitAddWithOverflow(GateRef gate, GateRef e1, GateRef e2) in VisitAddWithOverflow() argument
1733 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitAddWithOverflow()
1758 void LLVMIRBuilder::VisitSubWithOverflow(GateRef gate, GateRef e1, GateRef e2) in VisitSubWithOverflow() argument
1760 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitSubWithOverflow()
1785 void LLVMIRBuilder::VisitMulWithOverflow(GateRef gate, GateRef e1, GateRef e2) in VisitMulWithOverflow() argument
1787 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitMulWithOverflow()
1810 void LLVMIRBuilder::VisitExtractValue(GateRef gate, GateRef e1, GateRef e2) in VisitExtractValue() argument
1812 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitExtractValue()
1825 void LLVMIRBuilder::VisitSqrt(GateRef gate, GateRef e1) in VisitSqrt() argument
1827 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitSqrt()
1892 void LLVMIRBuilder::VisitCmp(GateRef gate, GateRef e1, GateRef e2) in VisitCmp() argument
1894 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitCmp()
1897 [[maybe_unused]] auto e1ValCode = acc_.GetMachineType(e1); in VisitCmp()
1956 void LLVMIRBuilder::VisitIntDiv(GateRef gate, GateRef e1, GateRef e2) in VisitIntDiv() argument
1958 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitIntDiv()
1964 void LLVMIRBuilder::VisitUDiv(GateRef gate, GateRef e1, GateRef e2) in VisitUDiv() argument
1966 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitUDiv()
1972 void LLVMIRBuilder::VisitFloatDiv(GateRef gate, GateRef e1, GateRef e2) in VisitFloatDiv() argument
1974 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitFloatDiv()
1981 void LLVMIRBuilder::VisitIntOr(GateRef gate, GateRef e1, GateRef e2) in VisitIntOr() argument
1983 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitIntOr()
1996 void LLVMIRBuilder::VisitIntAnd(GateRef gate, GateRef e1, GateRef e2) in VisitIntAnd() argument
1998 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitIntAnd()
2004 void LLVMIRBuilder::VisitIntXor(GateRef gate, GateRef e1, GateRef e2) in VisitIntXor() argument
2006 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitIntXor()
2012 void LLVMIRBuilder::VisitIntLsr(GateRef gate, GateRef e1, GateRef e2) in VisitIntLsr() argument
2014 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitIntLsr()
2020 void LLVMIRBuilder::VisitIntAsr(GateRef gate, GateRef e1, GateRef e2) in VisitIntAsr() argument
2022 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitIntAsr()
2035 void LLVMIRBuilder::VisitIntLsl(GateRef gate, GateRef e1, GateRef e2) in VisitIntLsl() argument
2037 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitIntLsl()
2043 void LLVMIRBuilder::VisitZExtInt(GateRef gate, GateRef e1) in VisitZExtInt() argument
2045 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitZExtInt()
2046 ASSERT(GetBitWidthFromMachineType(acc_.GetMachineType(e1)) <= in VisitZExtInt()
2052 void LLVMIRBuilder::VisitSExtInt(GateRef gate, GateRef e1) in VisitSExtInt() argument
2054 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitSExtInt()
2064 void LLVMIRBuilder::VisitCastIntXToIntY(GateRef gate, GateRef e1) in VisitCastIntXToIntY() argument
2066 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitCastIntXToIntY()
2067 ASSERT(GetBitWidthFromMachineType(acc_.GetMachineType(e1)) >= in VisitCastIntXToIntY()
2078 void LLVMIRBuilder::VisitFPExt(GateRef gate, GateRef e1) in VisitFPExt() argument
2080 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitFPExt()
2081 ASSERT(GetBitWidthFromMachineType(acc_.GetMachineType(e1)) <= in VisitFPExt()
2092 void LLVMIRBuilder::VisitFPTrunc(GateRef gate, GateRef e1) in VisitFPTrunc() argument
2094 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitFPTrunc()
2095 ASSERT(GetBitWidthFromMachineType(acc_.GetMachineType(e1)) >= in VisitFPTrunc()
2101 void LLVMIRBuilder::VisitChangeInt32ToDouble(GateRef gate, GateRef e1) in VisitChangeInt32ToDouble() argument
2103 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitChangeInt32ToDouble()
2108 void LLVMIRBuilder::VisitChangeUInt32ToDouble(GateRef gate, GateRef e1) in VisitChangeUInt32ToDouble() argument
2110 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitChangeUInt32ToDouble()
2115 void LLVMIRBuilder::VisitChangeDoubleToInt32(GateRef gate, GateRef e1) in VisitChangeDoubleToInt32() argument
2117 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitChangeDoubleToInt32()
2122 void LLVMIRBuilder::VisitChangeTaggedPointerToInt64(GateRef gate, GateRef e1) in VisitChangeTaggedPointerToInt64() argument
2124 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitChangeTaggedPointerToInt64()
2129 void LLVMIRBuilder::VisitChangeInt64ToTagged(GateRef gate, GateRef e1) in VisitChangeInt64ToTagged() argument
2131 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitChangeInt64ToTagged()
2142 void LLVMIRBuilder::VisitBitCast(GateRef gate, GateRef e1) in VisitBitCast() argument
2144 LLVMValueRef e1Value = gate2LValue_[e1]; in VisitBitCast()
2146 GetBitWidthFromMachineType(acc_.GetMachineType(e1))); in VisitBitCast()