| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_phase/src/ |
| H A D | phase_impl.cpp | 23 FuncOptimizeImpl::FuncOptimizeImpl(MIRModule &mod, bool currTrace) in FuncOptimizeImpl() argument
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/include/ |
| H A D | constantfold.h | 26 ConstantFold(MIRModule &mod, bool trace) : FuncOptimizeImpl(mod, trace), mirModule(&mod) {} in ConstantFold() argument 28 explicit ConstantFold(MIRModule &mod) : FuncOptimizeImpl(mod, false), mirModule(&mod) {} in ConstantFold() argument
|
| /arkcompiler/runtime_core/static_core/verification/util/tests/ |
| H A D | function_traits_test.cpp | 41 int mod; member
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/ |
| H A D | intrinsics.cpp | 31 void IntrinDesc::InitMIRModule(MIRModule *mod) in InitMIRModule() argument
|
| H A D | mir_nodes.cpp | 523 void DumpCallReturns(const MIRModule &mod, CallReturnVector nrets, int32 indent) in DumpCallReturns() argument
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/be/ |
| H A D | switch_lowerer.h | 26 SwitchLowerer(maple::MIRModule &mod, maple::SwitchNode &stmt, maple::MapleAllocator &allocator) in SwitchLowerer() argument
|
| H A D | lower.h | 46 CGLowerer(MIRModule &mod, BECommon &common, MIRFunction *func = nullptr) : mirModule(mod), beCommon(common) in CGLowerer() argument 53 CGLowerer(MIRModule &mod, BECommon &common, bool genEh, bool verboseCG) : mirModule(mod), beCommon(common) in CGLowerer() argument
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/ |
| H A D | x64_cg.h | 33 X64CG(MIRModule &mod, const CGOptions &opts, const std::vector<std::string> &nameVec, in X64CG() argument
|
| H A D | x64_cgfunc.h | 28 X64CGFunc(MIRModule &mod, CG &c, MIRFunction &f, BECommon &b, MemPool &memPool, StackMemPool &stackMp, in X64CGFunc() argument
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/ |
| H A D | aarch64_cg.h | 38 AArch64CG(MIRModule &mod, const CGOptions &opts, const std::vector<std::string> &nameVec, in AArch64CG() argument
|
| H A D | aarch64_cgfunc.h | 32 AArch64CGFunc(MIRModule &mod, CG &c, MIRFunction &f, BECommon &b, MemPool &memPool, StackMemPool &stackMp, in AArch64CGFunc() argument
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/be/ |
| H A D | becommon.cpp | 27 BECommon::BECommon(MIRModule &mod) in BECommon() argument
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/ |
| H A D | x64_cg.cpp | 34 CGFunc *X64CG::CreateCGFunc(MIRModule &mod, MIRFunction &mirFunc, BECommon &bec, MemPool &memPool, in CreateCGFunc() argument
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
| H A D | target_registry.h | 52 CG *createCG(MIRModule &mod, const CGOptions &opts, const std::vector<std::string> &nameVec, in createCG() argument
|
| H A D | cg.h | 193 CG(MIRModule &mod, const CGOptions &cgOptions) in CG() argument
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
| H A D | optimize_common.cpp | 224 void DotGenerator::GenerateDot(const std::string &preFix, const CGFunc &cgFunc, const MIRModule &mod, in GenerateDot() argument
|
| H A D | cgfunc.cpp | 482 CGFunc::CGFunc(MIRModule &mod, CG &cg, MIRFunction &mirFunc, BECommon &beCommon, MemPool &memPool, in CGFunc() argument
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/ |
| H A D | mir_lower.h | 51 MIRLower(MIRModule &mod, MIRFunction *f) : mirModule(mod), mirFunc(f) {} in MIRLower() argument
|
| H A D | mir_const.h | 542 MIRAggConst(MIRModule &mod, MIRType &type) in MIRAggConst() argument
|
| H A D | metadata_layout.h | 251 uint32_t mod; member
|
| /arkcompiler/runtime_core/static_core/compiler/tests/ |
| H A D | checks_elimination_test.cpp | 180 Graph *ModTestInput(int32_t arrayLen, int32_t mod) in ModTestInput() argument 214 Graph *ModTestOutput(int32_t arrayLen, int32_t mod) in ModTestOutput() argument 248 void ModTest(int32_t arrayLen, int32_t mod) in ModTest() argument 262 Graph *PhiTestInput(int32_t index, int32_t lenArray, int32_t mod) in PhiTestInput() argument 306 Graph *PhiTestOutput1(int32_t index, int32_t lenArray, int32_t mod) in PhiTestOutput1() argument 352 PhiTest(int32_t index, int32_t lenArray, int32_t mod) PhiTest() argument [all...] |
| /arkcompiler/runtime_core/static_core/compiler/tests/aarch64/ |
| H A D | encoder64_test_2.cpp | 623 auto mod = fmodf(tmp1, tmp2); in TestModMainLoop() local 628 auto mod = fmod(tmp1, tmp2); in TestModMainLoop() local 633 auto mod = static_cast<T>(tmp1 % tmp2); in TestModMainLoop() local
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/ |
| H A D | std_core_TypeCreator.cpp | 117 void SetAccessFlags(pandasm::ItemMetadata *meta, EtsTypeAPIAccessModifier mod) in SetAccessFlags() argument
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/assembler/ |
| H A D | elf_assembler.h | 530 uint8 mod = GetMod(reg1); in GetModRM() local 538 uint8 mod = GetMod(mem); in GetModRM() local 543 void SetModRM(uint8 mod, uint argument [all...] |
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
| H A D | checks_elimination.cpp | 1004 auto mod = GetGraph()->CreateInstMod(DataType::INT32, INVALID_PC, sub, GetGraph()->FindOrCreateConstant(constStep)); in TryInsertDeoptimizationForLargeStep() local
|