Home
last modified time | relevance | path

Searched refs:CreateExprBinary (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dmir_builder.h223 …BinaryNode *CreateExprBinary(Opcode opcode, const MIRType &type, BaseNode *opnd0, BaseNode *opnd1);
224 BinaryNode *CreateExprBinary(Opcode opcode, PrimType pty, BaseNode *opnd0, BaseNode *opnd1) in CreateExprBinary() function
227 return CreateExprBinary(opcode, *ty, opnd0, opnd1); in CreateExprBinary()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/src/
Dsimplify.cpp124 opExpr = builder->CreateExprBinary(OP_max, *type, opnd0, cnode.Opnd(1)); in SimplifyMathMethod()
126 opExpr = builder->CreateExprBinary(OP_min, *type, opnd0, cnode.Opnd(1)); in SimplifyMathMethod()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/be/
Dlower.cpp1409 …mirBuilder->CreateExprBinary(OP_add, *addrType, addrNode, mirBuilder->CreateIntConst(curSize, PTY_… in LowerStructReturnInGpRegs()
1423 regreadExp = mirBuilder->CreateExprBinary(OP_lshr, *type, regreadExp, in LowerStructReturnInGpRegs()
1477 addrNode = mirBuilder->CreateExprBinary(OP_add, *addrType, addrNode, in LowerStructReturnInFpRegs()
2215 …BaseNode *refLenAddr = mirBuilder->CreateExprBinary(OP_add, *addrType, &opnd0, arrayHeaderCstNode); in GetLenNode()
2782 …mirBuilder->CreateExprBinary(OP_add, *GlobalTables::GetTypeTable().GetAddr64(), intrincall.Opnd(0)… in LowerIntrinsicMplClearStack()
2789 …BinaryNode *subLen = mirBuilder->CreateExprBinary(OP_add, *GlobalTables::GetTypeTable().GetPrimTyp… in LowerIntrinsicMplClearStack()
Dbecommon.cpp739 return mirModule.GetMIRBuilder()->CreateExprBinary( in GetAddressOfNode()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/litecg/
Dlmir_builder.cpp754 return Expr(mirBuilder.CreateExprBinary(op, *type, src1.GetNode(), src2.GetNode()), type); in CreateBinOpInternal()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
Dmir_builder.cpp818 BinaryNode *MIRBuilder::CreateExprBinary(Opcode opcode, const MIRType &type, BaseNode *opnd0, BaseN… in CreateExprBinary() function in maple::MIRBuilder