Lines Matching refs:value
39 DEFAULT = -1, // default value 000'0000'0001'0000'0101'1100 -> 0x105c
221 static_assert(OPTION_SPLIT_ONE == 64); // add new option at the bottom, DO NOT modify this value
222 static_assert(OPTION_SPLIT_TWO == 128); // add new option at the bottom, DO NOT modify this value
239 void SetEnableArkTools(bool value)
241 enableArkTools_ = value;
254 void SetOpenArkTools(bool value)
256 openArkTools_ = value;
269 void SetEnableRuntimeStat(bool value)
271 enableRuntimeStat_ = value;
284 void SetStubFile(std::string value)
286 stubFile_ = std::move(value);
324 void SetEnableAOT(bool value)
326 enableAOT_ = value;
339 void SetAOTOutputFile(const std::string& value)
341 aotOutputFile_ = panda::os::file::File::GetExtendedFilePath(value);
354 void SetTargetTriple(std::string value)
356 targetTriple_ = std::move(value);
364 void SetOptLevel(size_t value)
366 asmOptLevel_ = value;
374 void SetRelocMode(size_t value)
376 relocationMode_ = value;
384 void SetEnableForceGC(bool value)
386 enableForceGc_ = value;
394 void SetEnableEdenGC(bool value)
396 enableEdenGC_ = value;
404 void SetForceFullGC(bool value)
406 forceFullGc_ = value;
457 std::string value;
460 value += c;
466 heapSize_ = static_cast<size_t>(stoi(value)) * 1_MB;
645 void SetMaxNonmovableSpaceCapacity(uint32_t value)
647 maxNonmovableSpaceCapacity_ = value;
650 void SetEnableAsmInterpreter(bool value)
652 enableAsmInterpreter_ = value;
660 void SetEnableBuiltinsLazy(bool value)
662 enableBuiltinsLazy_ = value;
670 void SetAsmOpcodeDisableRange(std::string value)
672 asmOpcodeDisableRange_ = std::move(value);
675 void SetDisableCodeSign(bool value)
677 disableCodeSign_ = value;
685 void SetEnableJitFort(bool value)
687 enableJitFort_ = value;
695 void SetEnableAsyncCopyToFort(bool value)
697 enableAsyncCopyToFort_ = value;
748 void SetCompilerLogOption(std::string value)
750 compilerLogOpt_ = std::move(value);
763 void SetMethodsListForLog(std::string value)
765 compilerLogMethods_ = std::move(value);
774 void SetCompilerLogSnapshot(bool value)
776 compilerLogSnapshot_ = value;
789 void SetCompilerLogTime(bool value)
791 compilerLogTime_ = value;
809 void SetSerializerBufferSizeLimit(uint64_t value)
811 serializerBufferSizeLimit_ = value;
819 void SetHeapSizeLimit(uint32_t value)
821 heapSizeLimit_ = value;
854 void SetEnableIC(bool value)
856 enableIC_ = value;
869 void SetIcuDataPath(std::string value)
871 icuDataPath_ = std::move(value);
884 void SetStartupTime(bool value)
886 startupTime_ = value;
894 void SetTraceBc(bool value)
896 traceBc_ = value;
914 void SetLogLevel(std::string value)
916 logLevel_ = std::move(value);
929 void SetLogComponents(arg_list_t value)
931 logComponents_ = std::move(value);
944 void SetLogDebug(arg_list_t value)
946 logDebug_ = std::move(value);
959 void SetLogInfo(arg_list_t value)
961 logInfo_ = std::move(value);
974 void SetLogWarning(arg_list_t value)
976 logWarning_ = std::move(value);
989 void SetLogError(arg_list_t value)
991 logError_ = std::move(value);
1004 void SetLogFatal(arg_list_t value)
1006 logFatal_ = std::move(value);
1019 void SetMaxAotMethodSize(uint32_t value)
1021 maxAotMethodSize_ = value;
1039 void SetEntryPoint(std::string value)
1041 entryPoint_ = std::move(value);
1054 void SetMergeAbc(bool value)
1056 mergeAbc_ = value;
1059 void SetEnableContext(bool value)
1061 enableContext_ = value;
1069 void SetEnablePrintExecuteTime(bool value)
1071 enablePrintExecuteTime_ = value;
1079 void SetEnableElementsKind(bool value)
1081 enableElementsKind_ = value;
1089 void SetEnableForceIC(bool value)
1091 enableForceIC_ = value;
1099 void SetEnablePGOProfiler(bool value)
1101 enablePGOProfiler_ = value;
1124 void SetPGOSaveMinInterval(uint32_t value)
1126 pgoSaveMinInterval_ = value;
1134 void SetEnableBaselinePgo(bool value)
1136 enableBaselinePgo_ = value;
1144 void SetPGOProfilerPath(const std::string& value)
1146 pgoProfilerPath_ = panda::os::file::File::GetExtendedFilePath(value);
1154 void SetEnableTypeLowering(bool value)
1156 enableTypeLowering_ = value;
1164 void SetEnableArrayBoundsCheckElimination(bool value)
1166 enableArrayBoundsCheckElimination_ = value;
1174 void SetEnableFrameStateElimination(bool value)
1176 enableFrameStateElimination_ = value;
1184 void SetEnableEarlyElimination(bool value)
1186 enableEarlyElimination_ = value;
1194 void SetEnableLaterElimination(bool value)
1196 enableLaterElimination_ = value;
1204 void SetEnableInstrcutionCombine(bool value)
1206 enableInstrcutionCombine = value;
1214 void SetEnableValueNumbering(bool value)
1216 enableValueNumbering_ = value;
1224 void SetEnableJIT(bool value)
1226 enableFastJIT_ = value;
1234 void SetEnableAPPJIT(bool value)
1236 enableAPPJIT_ = value;
1244 void SetEnableJitFrame(bool value)
1246 enableJitFrame_ = value;
1259 void SetEnableJitDfxDump(bool value)
1261 isEnableJitDfxDump_ = value;
1264 void SetEnableOSR(bool value)
1266 enableOSR_ = value;
1274 void SetJitHotnessThreshold(uint16_t value)
1276 jitHotnessThreshold_ = value;
1284 void SetJitCallThreshold(uint8_t value)
1286 jitCallThreshold_ = value;
1294 void SetOsrHotnessThreshold(uint16_t value)
1296 osrHotnessThreshold_ = value;
1304 void SetForceJitCompileMain(bool value)
1306 forceJitCompileMain_ = value;
1314 void SetEnableBaselineJIT(bool value)
1316 enableBaselineJIT_ = value;
1324 void SetBaselineJitHotnessThreshold(uint16_t value)
1326 baselineJitHotnessThreshold_ = value;
1334 void SetForceBaselineCompileMain(bool value)
1336 forceBaselineCompileMain_ = value;
1344 void SetEnableNewValueNumbering(bool value)
1346 enableNewValueNumbering_ = value;
1354 void SetEnableOptString(bool value)
1356 enableOptString_ = value;
1364 void SetEnableOptInlining(bool value)
1366 enableOptInlining_ = value;
1374 void SetEnableOptPGOType(bool value)
1376 enableOptPGOType_ = value;
1384 void SetEnableOptTrackField(bool value)
1386 enableOptTrackField_ = value;
1404 void SetTraceDeopt(bool value)
1406 traceDeopt_ = value;
1414 void SetDeoptThreshold(uint8_t value)
1416 deoptThreshold_ = value;
1424 void SetStressDeopt(bool value)
1426 stressDeopt_ = value;
1434 void SetDeviceState(bool value)
1436 deviceIsScreenOff_ = value;
1464 void SetOptCodeProfiler(bool value)
1466 optCodeProfiler_ = value;
1474 void SetVerifyVTable(bool value)
1476 verifyVTable_ = value;
1489 void SetCompilerSelectMethods(std::string value)
1491 compilerSelectMethods_ = std::move(value);
1499 void SetCompilerSkipMethods(std::string value)
1501 compilerSkipMethods_ = std::move(value);
1504 void SetPGOTrace(bool value)
1506 pgoTrace_ = value;
1514 void SetTraceInline(bool value)
1516 traceInline_ = value;
1524 void SetTraceValueNumbering(bool value)
1526 traceValueNumbering_ = value;
1534 void SetTraceJIT(bool value)
1536 traceJIT_ = value;
1544 void SetTraceInstructionCombine(bool value)
1546 traceInstructionCombine_ = value;
1554 void SetMaxInlineBytecodes(size_t value)
1556 maxInlineBytecodes_ = value;
1634 void SetCompilerNoCheck(bool value)
1636 compilerNoCheck_ = value;
1648 void SetCompilerPipelineHostAOT(bool value)
1650 compilerPipelineHostAOT_ = value;
1658 void SetFastAOTCompileMode(bool value)
1660 fastAOTCompileMode_ = value;
1668 void SetEnableOptLoopPeeling(bool value)
1670 enableOptLoopPeeling_ = value;
1678 void SetEnableOptLoopInvariantCodeMotion(bool value)
1680 enableOptLoopInvariantCodeMotion_ = value;
1693 void SetEnableOptConstantFolding(bool value)
1695 enableOptConstantFolding_ = value;
1698 void SetEnableOptOnHeapCheck(bool value)
1700 enableOptOnHeapCheck_ = value;
1713 void SetEnableLexenvSpecialization(bool value)
1715 enableLexenvSpecialization_ = value;
1723 void SetEnableNativeInline(bool value)
1725 enableNativeInline_ = value;
1733 void SetEnableLoweringBuiltin(bool value)
1735 enableLoweringBuiltin_ = value;
1738 void SetCompilerEnableLiteCG(bool value)
1740 enableLiteCG_ = value;
1748 void SetTypedOpProfiler(bool value)
1750 enableTypedOpProfiler_ = value;
1763 void SetEnableBranchProfiling(bool value)
1765 enableBranchProfiling_ = value;
1768 void SetTestAssert(bool value)
1770 testAssert_ = value;
1799 void SetOptCodeRange(std::string value)
1801 optBCRange_ = std::move(value);
1809 void SetEnableEscapeAnalysis(bool value)
1811 enableEscapeAnalysis_ = value;
1819 void SetEnableTraceEscapeAnalysis(bool value)
1821 traceEscapeAnalysis_ = value;
1829 void SetEnableInductionVariableAnalysis(bool value)
1831 enableInductionVariableAnalysis_ = value;
1839 void SetEnableTraceInductionVariableAnalysis(bool value)
1841 traceInductionVariableAnalysis_ = value;
1849 void SetEnableMemoryAnalysis(bool value)
1851 enableMemoryAnalysis_ = value;
1859 void SetCheckPgoVersion(bool value)
1861 checkPgoVersion_ = value;
1869 void SetEnableJITPGO(bool value)
1871 enableJITPGO_ = value;
1879 void SetEnableProfileDump(bool value)
1881 enableProfileDump_ = value;
1889 void SetEnableAOTPGO(bool value)
1891 enableAOTPGO_ = value;
1899 void SetEnableJitFastCompile(bool value)
1901 enableJitFastCompile_ = value;
1909 void SetEnableFrameworkAOT(bool value)
1911 enableFrameworkAOT_ = value;
1919 void SetAsyncLoadAbc(bool value)
1921 asyncLoadAbc_ = value;
1929 void SetAsyncLoadAbcTest(bool value)
1931 asyncLoadAbcTest_ = value;
1944 void SetPgoForceDump(bool value)
1946 forceDump_ = value;
1949 void SetConcurrentCompile(bool value)
1951 concurrentCompile = value;
1959 void SetAOTHasException(bool value)
1961 aotHasException_ = value;
1969 void SetCompilerEnablePgoSpace(bool value)
1971 enablePgoSpace_ = value;