/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/tests/ |
H A D | thread_state.cpp | 28 state.Reset(); in SetUp() 32 ThreadState state; member in ark::tooling::inspector::test::ThreadStateTest 42 ASSERT_FALSE(state.IsPaused()); in TEST_F() 43 state.OnSingleStep(fake); in TEST_F() 44 ASSERT_FALSE(state.IsPaused()); in TEST_F() 46 state.BreakOnStart(); in TEST_F() 47 state.OnSingleStep(fake); in TEST_F() 48 ASSERT_TRUE(state.IsPaused()); in TEST_F() 53 state.Pause(); in TEST_F() 54 state in TEST_F() [all...] |
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/ |
H A D | test_doclet.py | 205 test.assertTrue(parser.state is not None) 206 test.assertTrue('ArraySort' == parser.state.name) 207 test.assertTrue(2 == len(parser.state.params)) 208 test.assertTrue(2 == len(parser.state.benches)) 231 test.assertTrue(parser.state is not None) 232 test.assertTrue('X' == parser.state.name) 233 b = parser.state.benches 251 test.assertTrue(parser.state is not None) 252 test.assertTrue('ArraySort' == parser.state.name) 253 b = parser.state [all...] |
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_generator_object.cpp | 37 // 3.Let state be generator.[[GeneratorState]]. in GeneratorValidate() 39 JSGeneratorState state = generator->GetGeneratorState(); in GeneratorValidate() local 40 // 4.If state is executing, throw a TypeError exception. in GeneratorValidate() 41 if (state == JSGeneratorState::EXECUTING) { in GeneratorValidate() 44 // 5.Return state. in GeneratorValidate() 45 return state; in GeneratorValidate() 51 // 1.Let state be ? GeneratorValidate(generator). in GeneratorResume() 53 JSGeneratorState state = GeneratorValidate(thread, gen); in GeneratorResume() local 56 // 2.If state is completed, return CreateIterResultObject(undefined, true). in GeneratorResume() 57 if (state in GeneratorResume() 92 JSGeneratorState state = GeneratorValidate(thread, gen); GeneratorResumeAbrupt() local [all...] |
H A D | js_async_generator_object.cpp | 123 // 2. Let state be generator.[[AsyncGeneratorState]]. in AsyncGeneratorResumeNext() 124 JSAsyncGeneratorState state = generator->GetAsyncGeneratorState(); in AsyncGeneratorResumeNext() local 125 // 3. Assert: state is not executing. in AsyncGeneratorResumeNext() 126 ASSERT(state != JSAsyncGeneratorState::EXECUTING); in AsyncGeneratorResumeNext() 127 // 4. If state is awaiting-return, return undefined. in AsyncGeneratorResumeNext() 128 if (state == JSAsyncGeneratorState::AWAITING_RETURN) { in AsyncGeneratorResumeNext() 147 // a. If state is suspendedStart, then in AsyncGeneratorResumeNext() 148 if (state == JSAsyncGeneratorState::SUSPENDED_START) { in AsyncGeneratorResumeNext() 150 // ii. Set state to completed. in AsyncGeneratorResumeNext() 151 state in AsyncGeneratorResumeNext() 292 JSAsyncGeneratorState state = generator->GetAsyncGeneratorState(); AsyncGeneratorEnqueue() local [all...] |
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | monitor_object_lock.cpp | 33 Monitor::State state = Monitor::Wait(objHandler_.GetPtr(), ThreadStatus::IS_WAITING, 0, 0, ignoreInterruption); in Wait() local 34 LOG_IF(state == Monitor::State::ILLEGAL, FATAL, RUNTIME) << "Monitor::Wait() failed"; in Wait() 35 return state != Monitor::State::INTERRUPTED; in Wait() 40 Monitor::State state = Monitor::Wait(objHandler_.GetPtr(), ThreadStatus::IS_TIMED_WAITING, timeout, 0); in TimedWait() local 41 LOG_IF(state == Monitor::State::ILLEGAL, FATAL, RUNTIME) << "Monitor::Wait() failed"; in TimedWait() 42 return state != Monitor::State::INTERRUPTED; in TimedWait() 47 Monitor::State state = Monitor::Notify(objHandler_.GetPtr()); in Notify() local 48 LOG_IF(state != Monitor::State::OK, FATAL, RUNTIME) << "Monitor::Notify() failed"; in Notify() 53 Monitor::State state = Monitor::NotifyAll(objHandler_.GetPtr()); in NotifyAll() local 54 LOG_IF(state ! in NotifyAll() [all...] |
H A D | class.cpp | 27 std::ostream &operator<<(std::ostream &os, const Class::State &state) in operator <<() argument 29 switch (state) { in operator <<() 105 void Class::SetState(Class::State state) in SetState() argument 107 if (state_ == State::ERRONEOUS || state < state_ || (state_ == State::LOADED && state == State::INITIALIZED)) { in SetState() 108 LOG(FATAL, RUNTIME) << "Invalid class state transition " << state_ << " -> " << state; in SetState() local 111 state_ = state; in SetState()
|
H A D | monitor.cpp | 236 * @return state of function execution (ok, illegal) 251 MarkWord::ObjectState state = mark.GetState(); in MonitorEnter() local 253 LOG(DEBUG, RUNTIME) << "Try to enter monitor " << std::hex << obj << " with state " << std::dec << state; in MonitorEnter() local 255 switch (state) { in MonitorEnter() 300 LOG(FATAL, RUNTIME) << "Undefined object state"; in MonitorEnter() 314 MarkWord::ObjectState state = mark.GetState(); in MonitorExit() local 315 LOG(DEBUG, RUNTIME) << "Try to exit monitor " << std::hex << obj << " with state " << std::dec << state; in MonitorExit() local 316 switch (state) { in MonitorExit() 393 MarkWord::ObjectState state = mark.GetState(); Wait() local 487 MarkWord::ObjectState state = mark.GetState(); Notify() local 535 MarkWord::ObjectState state = mark.GetState(); NotifyAll() local 735 MarkWord::ObjectState state = oldMark.GetState(); Acquire() local 808 MarkWord::ObjectState state = oldMark.GetState(); Acquire() local 871 MarkWord::ObjectState state = mark.GetState(); Acquire() local 898 MarkWord::ObjectState state = mark.GetState(); Acquire() local 926 MarkWord::ObjectState state = mark.GetState(); Acquire() local [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | dead_code_elimination.cpp | 44 auto state = acc_.GetState(gate); in StateIsDead() local 45 if (acc_.IsDead(state)) { in StateIsDead() 46 return state; in StateIsDead() 53 GateRef state = StateIsDead(gate); in EliminateDependSelector() local 54 if (state != Circuit::NullGate() && acc_.IsDead(state)) { in EliminateDependSelector() 55 return state; in EliminateDependSelector() 73 GateRef state = StateIsDead(gate); in EliminateIfException() local 74 if (state != Circuit::NullGate() && acc_.IsDead(state)) { in EliminateIfException() 86 GateRef state = StateIsDead(gate); EliminateLoopExit() local 95 GateRef state = StateIsDead(gate); EliminateBranch() local [all...] |
H A D | string_builder_optimizer.h | 63 State state {State::INVALID_OPT}; 76 void SetStatus(GateRef gate, State state, int id = INVALID_ID) in SetStatus() argument 78 status_[acc_.GetId(gate)] = Status{id, state}; in SetStatus() 80 void UpdateStatus(GateRef gate, State state) in UpdateStatus() argument 82 int id = state == State::INVALID_OPT ? INVALID_ID : GetStatus(gate).id; in UpdateStatus() 83 status_[acc_.GetId(gate)] = Status{id, state}; in UpdateStatus() 87 return GetStatus(gate).state == State::INVALID_OPT; in IsInvalidGate()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/ |
H A D | litecg_codegen.cpp | 56 struct CodeInfo &state = *static_cast<struct CodeInfo *>(object); in AllocateCodeSection() local 57 return state.AllocaCodeSection(size, sectionName.c_str()); in AllocateCodeSection() 63 struct CodeInfo &state = *static_cast<struct CodeInfo *>(object); in AllocateCodeSectionOnDemand() local 64 return state.AllocaCodeSectionOnDemand(size, sectionName.c_str()); in AllocateCodeSectionOnDemand() 69 struct CodeInfo &state = *static_cast<struct CodeInfo *>(object); in SaveFunc2Addr() local 70 state.SaveFunc2Addr(funcName, address); in SaveFunc2Addr() 75 struct CodeInfo &state = *static_cast<struct CodeInfo *>(object); in SaveFunc2FPtoPrevSPDelta() local 76 state.SaveFunc2FPtoPrevSPDelta(funcName, fp2PrevSpDelta); in SaveFunc2FPtoPrevSPDelta() 81 struct CodeInfo &state = *static_cast<struct CodeInfo *>(object); in SaveFunc2CalleeOffsetInfo() local 82 state in SaveFunc2CalleeOffsetInfo() 87 struct CodeInfo &state = *static_cast<struct CodeInfo *>(object); SavePC2DeoptInfo() local 93 struct CodeInfo &state = *static_cast<struct CodeInfo *>(object); SavePC2CallSiteInfo() local [all...] |
/arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/ |
H A D | js_stackgetter.h | 42 RunningState state = RunningState::OTHER; member 47 return state < methodKey.state || in operator <() 48 (state == methodKey.state && methodIdentifier < methodKey.methodIdentifier) || in operator <() 49 (state == methodKey.state && methodIdentifier == methodKey.methodIdentifier && in operator <() 51 (state == methodKey.state && methodIdentifier == methodKey.methodIdentifier && in operator <()
|
/arkcompiler/ets_frontend/ets2panda/public/ |
H A D | es2panda_lib.cpp | 268 res->state = ES2PANDA_STATE_NEW; in CreateContext() 273 res->state = ES2PANDA_STATE_ERROR; in CreateContext() 309 if (ctx->state != ES2PANDA_STATE_NEW) { in Parse() 310 ctx->state = ES2PANDA_STATE_ERROR; in Parse() 311 ctx->errorMessage = "Bad state at entry to Parse, needed NEW"; in Parse() 318 ctx->state = ES2PANDA_STATE_ERROR; in Parse() 324 ctx->state = ES2PANDA_STATE_PARSED; in Parse() 332 ctx->state = ES2PANDA_STATE_ERROR; in Parse() 341 if (ctx->state < ES2PANDA_STATE_PARSED) { in InitScopes() 344 if (ctx->state in InitScopes() 507 ProceedToState(es2panda_Context *context, es2panda_ContextState state) ProceedToState() argument [all...] |
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/ |
H A D | reg_alloc_verifier.cpp | 26 std::string ToString(LocationState::State state) in ToString() argument 28 switch (state) { in ToString() 40 const LocationState &GetPhiLocationState(const BlockState &state, const ArenaVector<LocationState> &immediates, in GetPhiLocationState() argument 46 return state.GetStack(location.GetValue()); in GetPhiLocationState() 54 return state.GetVReg(location.GetValue() + (isHigh ? 1U : 0U)); in GetPhiLocationState() 57 return state.GetReg(location.GetValue() + (isHigh ? 1U : 0U)); in GetPhiLocationState() 60 LocationState &GetPhiLocationState(BlockState *state, const LifeIntervals *interval, bool isHigh) in GetPhiLocationState() argument 65 return state->GetStack(location.GetValue()); in GetPhiLocationState() 69 return state->GetVReg(location.GetValue() + (isHigh ? 1U : 0U)); in GetPhiLocationState() 72 return state in GetPhiLocationState() 214 Merge(const BlockState &state, const PhiInstSafeIter &phis, BasicBlock *pred, const ArenaVector<LocationState> &immediates, const LivenessAnalyzer &la) Merge() argument 252 Copy(BlockState *state) Copy() argument 481 LocationState *state = nullptr; HandleSpillFill() local [all...] |
/arkcompiler/ets_runtime/ecmascript/regexp/ |
H A D | regexp_executor.cpp | 299 auto state = reinterpret_cast<RegExpState *>( in PushRegExpState() local 302 state->type_ = type; in PushRegExpState() 303 state->currentPc_ = pc; in PushRegExpState() 304 state->currentPtr_ = GetCurrentPtr(); in PushRegExpState() 311 auto state = reinterpret_cast<RegExpState *>( in PushRegExpState() local 314 state->type_ = type; in PushRegExpState() 315 state->currentPc_ = pc; in PushRegExpState() 316 state->currentPtr_ = reinterpret_cast<const uint8_t *>(ptr); in PushRegExpState() 323 auto state = PeekRegExpState(); in PopRegExpState() local 325 switch (state in PopRegExpState() [all...] |
/arkcompiler/runtime_core/static_core/runtime/regexp/ecmascript/ |
H A D | regexp_executor.cpp | 78 RegExpState *state = PeekRegExpState(); in MatchFailed() local 79 if (state->type == StateType::STATE_SPLIT) { in MatchFailed() 85 isMatched = (state->type == StateType::STATE_MATCH_AHEAD && isMatched) || in MatchFailed() 86 (state->type == StateType::STATE_NEGATIVE_MATCH_AHEAD && !isMatched); in MatchFailed() 91 if (state->type == StateType::STATE_MATCH_AHEAD) { in MatchFailed() 95 if (state->type == StateType::STATE_NEGATIVE_MATCH_AHEAD) { in MatchFailed() 262 auto state = reinterpret_cast<RegExpState *>(stateStack_ + stateStackLen_ * stateSize_); in PushRegExpState() local 263 state->type = type; in PushRegExpState() 264 state->currentPc = pc; in PushRegExpState() 265 state in PushRegExpState() 287 auto state = PeekRegExpState(); PopRegExpState() local [all...] |
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_generator_object_test.cpp | 41 JSGeneratorState state = JSGeneratorObject::GeneratorValidate(thread, JSHandle<JSTaggedValue>::Cast(genOjb)); in HWTEST_F_L0() local 42 EXPECT_EQ(state, JSGeneratorState::UNDEFINED); in HWTEST_F_L0() 52 JSGeneratorState state = JSGeneratorObject::GeneratorValidate(thread, JSHandle<JSTaggedValue>::Cast(genObj)); in HWTEST_F_L0() local 53 EXPECT_EQ(state, JSGeneratorState::SUSPENDED_START); in HWTEST_F_L0() 70 JSGeneratorState state = JSGeneratorObject::GeneratorValidate(thread, JSHandle<JSTaggedValue>::Cast(genObj)); in HWTEST_F_L0() local 73 state = JSGeneratorObject::GeneratorValidate(thread, JSHandle<JSTaggedValue>::Cast(genObj)); in HWTEST_F_L0() 74 EXPECT_EQ(state, JSGeneratorState::COMPLETED); in HWTEST_F_L0() 94 // If state is completed, return object(undefined, true). in HWTEST_F_L0() 105 * generator is in a suspended state, and the Return or Throw value of the generator is returned.
|
H A D | js_async_generator_object_test.cpp | 41 JSAsyncGeneratorState state = asyncGenObj->GetAsyncGeneratorState(); in HWTEST_F_L0() local 42 EXPECT_EQ(state, JSAsyncGeneratorState::UNDEFINED); in HWTEST_F_L0()
|
/arkcompiler/toolchain/websocket/client/ |
H A D | websocket_client.cpp | 178 auto state = GetConnectionState(); in ClientSendWSUpgradeReq() local 179 if (state == ConnectionState::CLOSING || state == ConnectionState::CLOSED) { in ClientSendWSUpgradeReq() 183 if (state == ConnectionState::OPEN) { in ClientSendWSUpgradeReq() 201 auto state = GetConnectionState(); in ClientRecvWSUpgradeRsp() local 202 if (state == ConnectionState::CLOSING || state == ConnectionState::CLOSED) { in ClientRecvWSUpgradeRsp() 206 if (state == ConnectionState::OPEN) { in ClientRecvWSUpgradeRsp() 270 // Must be in `CONNECTING` or `CLOSED` state. in CloseOnInitFailure()
|
/arkcompiler/runtime_core/libpandafile/ |
H A D | debug_helpers.h | 30 BytecodeOffsetResolver(panda_file::LineProgramState *state, uint32_t bc_offset) in BytecodeOffsetResolver() argument 31 : state_(state), bc_offset_(bc_offset), prev_line_(state->GetLine()), line_(0) in BytecodeOffsetResolver() 151 panda::panda_file::LineProgramState state(*panda_debug_file, panda::panda_file::File::EntityId(0), in GetLineNumber() 154 BytecodeOffsetResolver resolver(&state, bc_offset); in GetLineNumber()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/ |
H A D | ets_sync_primitives.cpp | 72 auto state = state_.fetch_add(ONE_WAITER, std::memory_order_acq_rel); in Wait() local 73 if (IsFireState(state)) { in Wait() 84 auto state = state_.exchange(FIRE_STATE, std::memory_order_acq_rel); in Fire() local 85 if (IsFireState(state)) { in Fire() 88 for (auto waiters = GetNumberOfWaiters(state); waiters > 0; --waiters) { in Fire()
|
/arkcompiler/ets_runtime/ecmascript/interpreter/ |
H A D | interpreter-inl.cpp | 203 InterpretedFrame *state = GET_FRAME(sp); \ 204 pc = state->pc; \ 616 InterpretedFrame *state = GET_FRAME(newSp); in ExecuteNative() local 617 state->base.prev = sp; in ExecuteNative() 618 state->base.type = FrameType::INTERPRETER_FRAME; in ExecuteNative() 619 state->pc = nullptr; in ExecuteNative() 620 state->function = info->GetFunctionValue(); in ExecuteNative() 621 state->thisObj = info->GetThisValue(); in ExecuteNative() 737 InterpretedFrame *state = GET_FRAME(newSp); in Execute() local 738 state in Execute() 827 InterpretedFrame *state = GET_FRAME(newSp); GeneratorReEnterInterpreter() local 1416 InterpretedBuiltinFrame *state = GET_BUILTIN_FRAME(newSp); RunInternal() local 1473 InterpretedFrame *state = GET_FRAME(newSp); RunInternal() local 1528 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 1577 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 3197 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 3289 InterpretedBuiltinFrame *state = GET_BUILTIN_FRAME(newSp); RunInternal() local 3315 InterpretedFrame *state = GET_FRAME(newSp); RunInternal() local 3425 InterpretedBuiltinFrame *state = GET_BUILTIN_FRAME(newSp); RunInternal() local 3451 InterpretedFrame *state = GET_FRAME(newSp); RunInternal() local 3561 InterpretedBuiltinFrame *state = GET_BUILTIN_FRAME(newSp); RunInternal() local 3587 InterpretedFrame *state = GET_FRAME(newSp); RunInternal() local 3697 InterpretedBuiltinFrame *state = GET_BUILTIN_FRAME(newSp); RunInternal() local 3723 InterpretedFrame *state = GET_FRAME(newSp); RunInternal() local 4101 InterpretedBuiltinFrame *state = GET_BUILTIN_FRAME(newSp); RunInternal() local 4128 InterpretedFrame *state = GET_FRAME(newSp); RunInternal() local 4237 InterpretedBuiltinFrame *state = GET_BUILTIN_FRAME(newSp); RunInternal() local 4264 InterpretedFrame *state = GET_FRAME(newSp); RunInternal() local 4372 InterpretedBuiltinFrame *state = GET_BUILTIN_FRAME(newSp); RunInternal() local 4399 InterpretedFrame *state = GET_FRAME(newSp); RunInternal() local 4530 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 4536 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 4543 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 4681 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 4695 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 4973 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 4996 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 5025 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 5047 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 5068 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 5087 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 5254 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 5288 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 5952 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 5969 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 5986 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 6004 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 6022 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 6040 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 6059 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 6078 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 6097 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 7603 InterpretedFrame *state = GET_FRAME(sp); RunInternal() local 7819 InterpretedFrame *state = GET_FRAME(prevSp); InitStackFrameForSP() local 7833 InterpretedFrame *state = reinterpret_cast<InterpretedFrame *>(sp) - 1; GetFunction() local 7840 InterpretedFrame *state = reinterpret_cast<InterpretedFrame *>(sp) - 1; GetThis() local 7847 InterpretedFrame *state = reinterpret_cast<InterpretedFrame *>(sp) - 1; GetNewTarget() local 7858 InterpretedFrame *state = reinterpret_cast<InterpretedFrame *>(sp) - 1; GetNumArgs() local 7897 InterpretedFrame *state = reinterpret_cast<InterpretedFrame *>(sp) - 1; GetRuntimeProfileTypeInfo() local 7911 InterpretedFrame *state = reinterpret_cast<InterpretedFrame *>(sp) - 1; GetConstantPool() local 7917 InterpretedFrame *state = reinterpret_cast<InterpretedFrame *>(sp) - 1; GetUnsharedConstpool() local 7923 InterpretedFrame *state = GET_FRAME(sp); UpdateHotnessCounter() local [all...] |
H A D | interpreter_assembly.cpp | 528 AsmInterpretedFrame *state = GET_ASM_FRAME(sp); in HandleReturn() local 530 << std::hex << reinterpret_cast<uintptr_t>(state->pc); in HandleReturn() 531 Method *method = ECMAObject::Cast(state->function.GetTaggedObject())->GetCallTarget(); in HandleReturn() 535 sp = state->base.prev; in HandleReturn() 543 state->acc = acc; in HandleReturn() 556 AsmInterpretedFrame *state = GET_ASM_FRAME(sp); in HandleReturnundefined() local 558 << std::hex << reinterpret_cast<uintptr_t>(state->pc); in HandleReturnundefined() 559 Method *method = ECMAObject::Cast(state->function.GetTaggedObject())->GetCallTarget(); in HandleReturnundefined() 563 sp = state->base.prev; in HandleReturnundefined() 571 state in HandleReturnundefined() [all...] |
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/ |
H A D | heap_sampling.cpp | 100 methodKey.state = JsStackGetter::GetRunningState(it, vm_, isNative, true); in GetStack() 103 methodKey.state = JsStackGetter::GetRunningState(it, vm_, isNative, false); in GetStack() 147 frameInfoTemps_[i].methodKey.state, in FillScriptIdAndStore() 157 std::string HeapSampling::AddRunningState(char *functionName, RunningState state, kungfu::DeoptType type) in AddRunningState() argument 160 if (state == RunningState::AOT && type != kungfu::DeoptType::NONE) { in AddRunningState() 161 state = RunningState::AINT; in AddRunningState() 163 if (state == RunningState::BUILTIN) { in AddRunningState()
|
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/ |
H A D | doclet.py | 115 self.state: Optional[BenchClass] = None 159 if not self.state: 160 raise ValueError('No state found!') 161 return self.state 179 self.state = BenchClass(name=class_name, tags=self.__pending_tags, 186 self.state.bench_args = self.parse_bench_overrides(value) 188 self.state.generator = generators[0].value 223 if self.state and states: 225 self.state.tags += self.__pending_tags 230 if self.state an [all...] |
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ |
H A D | plugin_phase.cpp | 22 ctx->state = contextState_; in Perform() 30 if (ctx->state == ES2PANDA_STATE_ERROR) { in Perform()
|