Lines Matching refs:CompileStateBit
325 return CompileStateBit::PGOBit::Decode(compileState_.value_); in IsPGO()
330 CompileStateBit::PGOBit::Set<uint8_t>(pgoMark, &compileState_.value_); in SetIsPGO()
335 return CompileStateBit::CompiledBit::Decode(compileState_.value_); in IsCompiled()
340 CompileStateBit::CompiledBit::Set<uint8_t>(isCompiled, &compileState_.value_); in SetIsCompiled()
345 return CompileStateBit::TypeInferAbortBit::Decode(compileState_.value_); in IsTypeInferAbort()
350 CompileStateBit::TypeInferAbortBit::Set<uint8_t>(halfCompiled, &compileState_.value_); in SetTypeInferAbort()
355 return CompileStateBit::ResolvedMethodBit::Decode(compileState_.value_); in IsResolvedMethod()
360 CompileStateBit::ResolvedMethodBit::Set<uint8_t>(isDeoptResolveNeed, &compileState_.value_); in SetResolvedMethod()
364 class CompileStateBit {
366 explicit CompileStateBit(uint8_t value) : value_(value) {} in CompileStateBit() function
367 CompileStateBit() = default;
368 ~CompileStateBit() = default;
369 DEFAULT_COPY_SEMANTIC(CompileStateBit);
370 DEFAULT_MOVE_SEMANTIC(CompileStateBit);
394 CompileStateBit compileState_ { 0 };