Lines Matching refs:CompileStateBit
319 return CompileStateBit::PGOBit::Decode(compileState_.value_); in IsPGO()
324 CompileStateBit::PGOBit::Set<uint8_t>(pgoMark, &compileState_.value_); in SetIsPGO()
329 return CompileStateBit::CompiledBit::Decode(compileState_.value_); in IsCompiled()
334 CompileStateBit::CompiledBit::Set<uint8_t>(isCompiled, &compileState_.value_); in SetIsCompiled()
339 return CompileStateBit::TypeInferAbortBit::Decode(compileState_.value_); in IsTypeInferAbort()
344 CompileStateBit::TypeInferAbortBit::Set<uint8_t>(halfCompiled, &compileState_.value_); in SetTypeInferAbort()
349 return CompileStateBit::ResolvedMethodBit::Decode(compileState_.value_); in IsResolvedMethod()
354 CompileStateBit::ResolvedMethodBit::Set<uint8_t>(isDeoptResolveNeed, &compileState_.value_); in SetResolvedMethod()
358 class CompileStateBit {
360 explicit CompileStateBit(uint8_t value) : value_(value) {} in CompileStateBit() function
361 CompileStateBit() = default;
362 ~CompileStateBit() = default;
363 DEFAULT_COPY_SEMANTIC(CompileStateBit);
364 DEFAULT_MOVE_SEMANTIC(CompileStateBit);
388 CompileStateBit compileState_ { 0 };