Home
last modified time | relevance | path

Searched defs:mp (Results 1 – 19 of 19) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/
Dx64_cg.h44 LiveAnalysis *CreateLiveAnalysis(MemPool &mp, CGFunc &f) const override in CreateLiveAnalysis()
48 CGPeepHole *CreateCGPeepHole(MemPool &mp, CGFunc &f) const override in CreateCGPeepHole()
56 MoveRegArgs *CreateMoveRegArgs(MemPool &mp, CGFunc &f) const override in CreateMoveRegArgs()
61 MPISel *CreateMPIsel(MemPool &mp, MapleAllocator &allocator, CGFunc &f) const override in CreateMPIsel()
66 Standardize *CreateStandardize(MemPool &mp, CGFunc &f) const override in CreateStandardize()
71 CFGOptimizer *CreateCFGOptimizer(MemPool &mp, CGFunc &f, LoopAnalysis &loop) const override in CreateCFGOptimizer()
Dx64_MPISel.h25 X64MPIsel(MemPool &mp, MapleAllocator &allocator, CGFunc &f) : MPISel(mp, allocator, f) {} in X64MPIsel()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Dcg_irbuilder.cpp93 ImmOperand &OperandBuilder::CreateImm(uint32 size, int64 value, MemPool *mp) in CreateImm()
98 ImmOperand &OperandBuilder::CreateImm(uint32 size, int64 value, bool isSigned, MemPool *mp) in CreateImm()
103 …perand &OperandBuilder::CreateImm(const MIRSymbol &symbol, int64 offset, int32 relocs, MemPool *mp) in CreateImm()
109 OfstOperand &OperandBuilder::CreateOfst(int64 offset, uint32 size, MemPool *mp) in CreateOfst()
114 MemOperand &OperandBuilder::CreateMem(uint32 size, MemPool *mp) in CreateMem()
119 MemOperand &OperandBuilder::CreateMem(RegOperand &baseOpnd, int64 offset, uint32 size, MemPool *mp) in CreateMem()
128 …&OperandBuilder::CreateMem(uint32 size, RegOperand &baseOpnd, ImmOperand &ofstOperand, MemPool *mp) in CreateMem()
137 const MIRSymbol &symbol, MemPool *mp) in CreateMem()
145 …randBuilder::CreateBitShift(BitShiftOperand::ShiftOp op, uint32 amount, uint32 bitLen, MemPool *mp) in CreateBitShift()
153 RegOperand &OperandBuilder::CreateVReg(uint32 size, RegType type, MemPool *mp) in CreateVReg()
[all …]
Dpeep.cpp524 MemPool *mp = GetPhaseMemPool(); in PhaseRun() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
Daarch64_cg.h75 LiveAnalysis *CreateLiveAnalysis(MemPool &mp, CGFunc &f) const override in CreateLiveAnalysis()
83 CGPeepHole *CreateCGPeepHole(MemPool &mp, CGFunc &f) const override in CreateCGPeepHole()
87 MoveRegArgs *CreateMoveRegArgs(MemPool &mp, CGFunc &f) const override in CreateMoveRegArgs()
91 CFGOptimizer *CreateCFGOptimizer(MemPool &mp, CGFunc &f, LoopAnalysis &loop) const override in CreateCFGOptimizer()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_phase/include/
Dmaple_phase.h27 MaplePhase(MaplePhaseKind kind, MaplePhaseID id, MemPool &mp) in MaplePhase()
78 MapleModulePhase(MaplePhaseID id, MemPool *mp) : MaplePhase(kModulePhase, id, *mp) {} in MapleModulePhase()
87 MapleFunctionPhase(MaplePhaseID id, MemPool *mp) : MaplePhase(kFunctionPhase, id, *mp) {} in MapleFunctionPhase()
95 MapleSccPhase(MaplePhaseID id, MemPool *mp) : MaplePhase(kSccPhase, id, *mp) {} in MapleSccPhase()
Dmaple_phase_manager.h288 … ModulePM(MemPool *mp, MaplePhaseID id) : MaplePhase(kModulePM, id, *mp), MaplePhaseManager(*mp) {} in ModulePM()
295 FunctionPM(MemPool *mp, MaplePhaseID id) : MapleModulePhase(id, mp), MaplePhaseManager(*mp) {} in FunctionPM()
302 SccPM(MemPool *mp, MaplePhaseID id) : MapleModulePhase(id, mp), MaplePhaseManager(*mp) {} in SccPM()
310 …FunctionPhaseGroup(MemPool *mp, MaplePhaseID id) : MapleFunctionPhase<IRType>(&id, mp), MaplePhase… in FunctionPhaseGroup()
Dmaple_phase_support.h139 explicit AnalysisDep(MemPool &mp) in AnalysisDep()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
Dcg.h156 GCTIBPattern(GCTIBKey &patternKey, MemPool &mp) in GCTIBPattern()
372 virtual LiveAnalysis *CreateLiveAnalysis(MemPool &mp, CGFunc &f) const in CreateLiveAnalysis()
378 virtual MoveRegArgs *CreateMoveRegArgs(MemPool &mp, CGFunc &f) const in CreateMoveRegArgs()
382 virtual MPISel *CreateMPIsel(MemPool &mp, MapleAllocator &allocator, CGFunc &f) const in CreateMPIsel()
386 virtual Standardize *CreateStandardize(MemPool &mp, CGFunc &f) const in CreateStandardize()
Dcg_phasemanager.h38 explicit CgFuncPM(MemPool *mp) : FunctionPM(mp, &id) {} in CgFuncPM()
Disel.h30 MPISel(MemPool &mp, MapleAllocator &allocator, CGFunc &f) : isMp(&mp), cgFunc(&f) {} in MPISel()
Doperand.h1466 LabelOperand(const char *parent, LabelIdx labIdx, MemPool &mp) in LabelOperand()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/
Dx64_cg.cpp55 PhiOperand &X64CG::CreatePhiOperand(MemPool &mp, MapleAllocator &mAllocator) in CreatePhiOperand()
/arkcompiler/ets_frontend/ets2panda/util/
Ddtoa_helper.cpp154 void DtoaHelper::DigitGen(const DiyFp &w, const DiyFp &mp, uint64_t delta) in DigitGen()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
Daarch64_cg.cpp220 PhiOperand &AArch64CG::CreatePhiOperand(MemPool &mp, MapleAllocator &mAllocator) in CreatePhiOperand()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/helpers/
Ddtoa_helper.cpp154 void DtoaHelper::DigitGen(const DiyFp &w, const DiyFp &mp, uint64_t delta) in DigitGen()
/arkcompiler/ets_runtime/test/moduletest/arrayfrom/
Darrayfrom.js51 let mp=new Map(); variable
/arkcompiler/ets_runtime/ecmascript/
Djs_date.cpp102 int64_t mp = (COEFFICIENT_TO_CIVIL[0] * doy + MONTH_COEFFICIENT) / in GetYearFromDays() local
/arkcompiler/ets_frontend/legacy_bin/api8/src/
Dindex.js2 …ring,r="undefined"!=typeof Buffer&&"function"==typeof Buffer.alloc&&"function"==typeof Buffer.allo… variable