/arkcompiler/runtime_core/static_core/compiler/tests/ |
H A D | memory_barriers_test.cpp | 53 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 D | catch_inputs_test.cpp | 80 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 D | method_properties.cpp | 31 if (inst->GetFlag(inst_flags::CAN_DEOPTIMIZE)) { in MethodProperties()
|
H A D | codegen.cpp | 1284 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 D | encode_visitor.cpp | 408 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 D | inst.h | 802 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 D | inst.cpp | 499 return GetFlag(inst_flags::ACC_READ); in IsAccRead() 507 return GetFlag(inst_flags::ACC_WRITE); in IsAccWrite()
|
H A D | graph_checker.cpp | 541 ASSERT_PRINT(last_inst->GetFlag(inst_flags::TERMINATOR), in CheckBlockEdges()
|
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/ |
H A D | ets_codegen_extensions.cpp | 86 if (callInst->GetFlag(inst_flags::MEM_BARRIER)) { in LaunchCallCodegen()
|
/arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/ |
H A D | update_remset_task_queue.cpp | 38 auto iterationFlag = this->GetFlag(); in UpdateRemsetTaskQueue()
|
H A D | update_remset_thread.cpp | 77 auto iterationFlag = this->GetFlag(); in ThreadLoop()
|
H A D | update_remset_worker.h | 161 ALWAYS_INLINE UpdateRemsetWorkerFlags GetFlag() const in GetFlag() function in ark::mem::UpdateRemsetWorker
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
H A D | code_sink.cpp | 108 inst->GetFlag(compiler::inst_flags::HEAP_INV)) { in ProcessBlock()
|
H A D | memory_barriers.cpp | 281 if (inst->GetFlag(inst_flags::MEM_BARRIER)) { in ApplyGraph()
|
H A D | cleanup.cpp | 288 ssUser.GetInst()->GetFlag(inst_flags::MEM_BARRIER)) { in IsRemovableCall()
|
H A D | escape.cpp | 1160 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 D | inst.h | 864 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 D | inst.cpp | 794 return GetFlag(inst_flags::ACC_READ); in IsAccRead() 802 return GetFlag(inst_flags::ACC_WRITE); in IsAccWrite()
|
/arkcompiler/runtime_core/compiler/tests/ |
H A D | compiler_optimizations_test.cpp | 103 EXPECT_FALSE(inst->GetFlag(inst_flags::Flags::NONE)); in HWTEST_F()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_regexp.h | 95 static bool GetFlag(JSThread *thread, const JSHandle<JSTaggedValue> regexp, uint32_t flag, bool isFastPath);
|
H A D | builtins_regexp.cpp | 618 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 D | statementParser.cpp | 1313 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 D | parserImpl.h | 104 static ir::VariableDeclaratorFlag GetFlag(VariableParsingFlags flags);
|
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/ |
H A D | llvm_ir_constructor.cpp | 158 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 D | mir_function.h | 791 uint32 GetFlag() const in GetFlag() function in maple::MIRFunction
|