Home
last modified time | relevance | path

Searched refs:GetFlag (Results 1 - 25 of 31) sorted by relevance

12

/arkcompiler/runtime_core/static_core/compiler/tests/
H A Dmemory_barriers_test.cpp53 ASSERT_EQ(INS(0U).GetFlag(inst_flags::MEM_BARRIER), false); in TEST_F()
54 ASSERT_EQ(INS(1U).GetFlag(inst_flags::MEM_BARRIER), false); in TEST_F()
55 ASSERT_EQ(INS(2U).GetFlag(inst_flags::MEM_BARRIER), true); in TEST_F()
56 ASSERT_EQ(INS(3U).GetFlag(inst_flags::MEM_BARRIER), false); in TEST_F()
57 ASSERT_EQ(INS(4U).GetFlag(inst_flags::MEM_BARRIER), false); in TEST_F()
58 ASSERT_EQ(INS(5U).GetFlag(inst_flags::MEM_BARRIER), true); in TEST_F()
59 ASSERT_EQ(INS(6U).GetFlag(inst_flags::MEM_BARRIER), false); in TEST_F()
60 ASSERT_EQ(INS(7U).GetFlag(inst_flags::MEM_BARRIER), false); in TEST_F()
61 ASSERT_EQ(INS(8U).GetFlag(inst_flags::MEM_BARRIER), false); in TEST_F()
62 ASSERT_EQ(INS(9U).GetFlag(inst_flag in TEST_F()
[all...]
H A Dcatch_inputs_test.cpp80 ASSERT_EQ(inst->GetFlag(inst_flags::Flags::CATCH_INPUT), inst->GetId() == ESCAPED_INST_ID); in TEST_F()
135 ASSERT_TRUE(INS(PARAM_ID).GetFlag(inst_flags::Flags::CATCH_INPUT)); in TEST_F()
136 ASSERT_TRUE(INS(PHI_ID).GetFlag(inst_flags::Flags::CATCH_INPUT)); in TEST_F()
137 ASSERT_TRUE(INS(LOAD_ID).GetFlag(inst_flags::Flags::CATCH_INPUT)); in TEST_F()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
H A Dmethod_properties.cpp31 if (inst->GetFlag(inst_flags::CAN_DEOPTIMIZE)) { in MethodProperties()
H A Dcodegen.cpp1284 if (callInst->GetFlag(inst_flags::MEM_BARRIER)) { in CreateMultiArrayCall()
2248 if (inst->GetFlag(inst_flags::MEM_BARRIER)) { in VisitNewArray()
2265 if (inst->GetFlag(inst_flags::MEM_BARRIER)) { in VisitNewArray()
2275 if (inst->GetFlag(inst_flags::MEM_BARRIER)) { in VisitNewArray()
H A Dencode_visitor.cpp408 if (inst->GetFlag(inst_flags::MEM_BARRIER)) { in VisitReturnVoid()
455 if (inst->GetFlag(inst_flags::MEM_BARRIER)) { in VisitReturnInlined()
1462 if (inst->GetFlag(inst_flags::MEM_BARRIER)) { in VisitNewObject()
2093 if (inst->GetFlag(inst_flags::MEM_BARRIER)) { in VisitMultiArray()
/arkcompiler/runtime_core/compiler/optimizer/ir/
H A Dinst.h802 return GetFlag(inst_flags::CF);
812 return GetFlag(inst_flags::CALL);
824 return GetFlag(inst_flags::CAN_THROW);
828 return GetFlag(inst_flags::REQUIRE_STATE);
833 return GetFlag(inst_flags::NO_DCE);
839 return GetFlag(inst_flags::PSEUDO_DST) || GetFlag(inst_flags::NO_DST) || GetType() == DataType::VOID;
844 return GetFlag(inst_flags::PSEUDO_DST);
849 return GetFlag(inst_flags::IMPLICIT_RUNTIME_CALL);
854 return GetFlag(inst_flag
959 bool GetFlag(inst_flags::Flags flag) const GetFlag() function in panda::compiler::inst_flags::final
[all...]
H A Dinst.cpp499 return GetFlag(inst_flags::ACC_READ); in IsAccRead()
507 return GetFlag(inst_flags::ACC_WRITE); in IsAccWrite()
H A Dgraph_checker.cpp541 ASSERT_PRINT(last_inst->GetFlag(inst_flags::TERMINATOR), in CheckBlockEdges()
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/
H A Dets_codegen_extensions.cpp86 if (callInst->GetFlag(inst_flags::MEM_BARRIER)) { in LaunchCallCodegen()
/arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/
H A Dupdate_remset_task_queue.cpp38 auto iterationFlag = this->GetFlag(); in UpdateRemsetTaskQueue()
H A Dupdate_remset_thread.cpp77 auto iterationFlag = this->GetFlag(); in ThreadLoop()
H A Dupdate_remset_worker.h161 ALWAYS_INLINE UpdateRemsetWorkerFlags GetFlag() const in GetFlag() function in ark::mem::UpdateRemsetWorker
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H A Dcode_sink.cpp108 inst->GetFlag(compiler::inst_flags::HEAP_INV)) { in ProcessBlock()
H A Dmemory_barriers.cpp281 if (inst->GetFlag(inst_flags::MEM_BARRIER)) { in ApplyGraph()
H A Dcleanup.cpp288 ssUser.GetInst()->GetFlag(inst_flags::MEM_BARRIER)) { in IsRemovableCall()
H A Descape.cpp1160 inst->GetFlag(inst_flags::Flags::CATCH_INPUT) || materializationInfo_.find(inst) != materializationInfo_.end();
1208 if (inst->GetFlag(inst_flags::Flags::CATCH_INPUT)) {
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H A Dinst.h864 return GetFlag(inst_flags::CF);
935 return GetFlag(inst_flags::CALL) && !IsIntrinsic();
940 return GetFlag(inst_flags::CALL);
986 return GetFlag(inst_flags::LOAD);
990 return GetFlag(inst_flags::STORE);
1000 return GetFlag(inst_flags::CAN_THROW);
1004 return GetFlag(inst_flags::IS_CHECK);
1008 return GetFlag(inst_flags::REQUIRE_STATE);
1013 return GetFlag(inst_flags::NO_DCE);
1019 return GetFlag(inst_flag
1214 bool GetFlag(inst_flags::Flags flag) const GetFlag() function
[all...]
H A Dinst.cpp794 return GetFlag(inst_flags::ACC_READ); in IsAccRead()
802 return GetFlag(inst_flags::ACC_WRITE); in IsAccWrite()
/arkcompiler/runtime_core/compiler/tests/
H A Dcompiler_optimizations_test.cpp103 EXPECT_FALSE(inst->GetFlag(inst_flags::Flags::NONE)); in HWTEST_F()
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_regexp.h95 static bool GetFlag(JSThread *thread, const JSHandle<JSTaggedValue> regexp, uint32_t flag, bool isFastPath);
H A Dbuiltins_regexp.cpp618 bool isGlobal = GetFlag(thread, regexp, RegExpParser::FLAG_GLOBAL, isFastPath); in RegExpMatch()
639 bool fullUnicode = GetFlag(thread, regexp, RegExpParser::FLAG_UTF16, isFastPath); in RegExpMatch()
1034 isGlobal = GetFlag(thread, thisObj, RegExpParser::FLAG_GLOBAL, isFastPath); in ReplaceInternal()
1039 fullUnicode = GetFlag(thread, thisObj, RegExpParser::FLAG_UTF16, isFastPath); in ReplaceInternal()
2794 bool BuiltinsRegExp::GetFlag(JSThread *thread, const JSHandle<JSTaggedValue> regexp, uint32_t flag, bool isFastPath) in GetFlag() function in panda::ecmascript::builtins::BuiltinsRegExp
2834 return GetFlag(thread, regexp, flag, true); in GetOriginalFlag()
/arkcompiler/ets_frontend/ets2panda/parser/
H A DstatementParser.cpp1313 auto *declarator = AllocNode<ir::VariableDeclarator>(GetFlag(flags), init, initializer); in ParseVariableDeclaratorInitializer()
1341 ir::VariableDeclaratorFlag ParserImpl::GetFlag(VariableParsingFlags flags) in GetFlag() function in ark::es2panda::parser::ParserImpl
1373 auto declarator = AllocNode<ir::VariableDeclarator>(GetFlag(flags), init); in ParseVariableDeclarator()
H A DparserImpl.h104 static ir::VariableDeclaratorFlag GetFlag(VariableParsingFlags flags);
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/
H A Dllvm_ir_constructor.cpp158 if (last->GetFlag(inst_flags::TERMINATOR)) { in MarkNormalBlocksRecursive()
1663 if (inst->GetFlag(inst_flags::MEM_BARRIER)) { in CreateNewArrayWithRuntime()
1679 if (inst->GetFlag(inst_flags::MEM_BARRIER)) { in CreateNewObjectWithRuntime()
1963 if (callInst->GetFlag(inst_flags::MEM_BARRIER)) { in CreateLaunchCall()
2972 if (inst->GetFlag(inst_flags::MEM_BARRIER)) { in VisitReturnVoid()
2997 if (inst->GetFlag(inst_flags::MEM_BARRIER)) { in VisitReturnInlined()
4097 if (inst->GetFlag(inst_flags::MEM_BARRIER)) { in VisitMultiArray()
4166 if (inst->GetFlag(inst_flags::MEM_BARRIER)) { in VisitNewArray()
4209 if (inst->GetFlag(inst_flags::MEM_BARRIER)) { in VisitNewObject()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
H A Dmir_function.h791 uint32 GetFlag() const in GetFlag() function in maple::MIRFunction

Completed in 93 milliseconds

12