Lines Matching defs:SelInfo

462     DBGFSELINFO     SelInfo;
469 SelInfo.Sel = Sel;
470 SelInfo.SelGate = 0;
471 SelInfo.GCPtrBase = pSRegCS->u64Base;
472 SelInfo.cbLimit = pSRegCS->u32Limit;
473 SelInfo.fFlags = PGMMODE_IS_LONG_MODE(enmMode)
479 SelInfo.u.Raw.au32[0] = 0;
480 SelInfo.u.Raw.au32[1] = 0;
481 SelInfo.u.Raw.Gen.u16LimitLow = 0xffff;
482 SelInfo.u.Raw.Gen.u4LimitHigh = 0xf;
483 SelInfo.u.Raw.Gen.u1Present = pSRegCS->Attr.n.u1Present;
484 SelInfo.u.Raw.Gen.u1Granularity = pSRegCS->Attr.n.u1Granularity;;
485 SelInfo.u.Raw.Gen.u1DefBig = pSRegCS->Attr.n.u1DefBig;
486 SelInfo.u.Raw.Gen.u1Long = pSRegCS->Attr.n.u1Long;
487 SelInfo.u.Raw.Gen.u1DescType = pSRegCS->Attr.n.u1DescType;
488 SelInfo.u.Raw.Gen.u4Type = pSRegCS->Attr.n.u4Type;
489 fRealModeAddress = !!(SelInfo.fFlags & DBGFSELINFO_FLAGS_REAL_MODE);
493 SelInfo.Sel = Sel;
494 SelInfo.SelGate = 0;
495 SelInfo.GCPtrBase = 0;
496 SelInfo.cbLimit = ~0;
497 SelInfo.fFlags = PGMMODE_IS_LONG_MODE(enmMode)
502 SelInfo.u.Raw.au32[0] = 0;
503 SelInfo.u.Raw.au32[1] = 0;
504 SelInfo.u.Raw.Gen.u16LimitLow = 0xffff;
505 SelInfo.u.Raw.Gen.u4LimitHigh = 0xf;
511 SelInfo.u.Raw.Gen.u1Present = pSRegCS->Attr.n.u1Present;
512 SelInfo.u.Raw.Gen.u1Granularity = pSRegCS->Attr.n.u1Granularity;;
513 SelInfo.u.Raw.Gen.u1DefBig = pSRegCS->Attr.n.u1DefBig;
514 SelInfo.u.Raw.Gen.u1Long = pSRegCS->Attr.n.u1Long;
515 SelInfo.u.Raw.Gen.u1DescType = pSRegCS->Attr.n.u1DescType;
516 SelInfo.u.Raw.Gen.u4Type = pSRegCS->Attr.n.u4Type;
521 SelInfo.u.Raw.Gen.u1Present = 1;
522 SelInfo.u.Raw.Gen.u1Granularity = 1;
523 SelInfo.u.Raw.Gen.u1DefBig = 1;
524 SelInfo.u.Raw.Gen.u1DescType = 1;
525 SelInfo.u.Raw.Gen.u4Type = X86_SEL_TYPE_EO;
535 SelInfo.Sel = Sel;
536 SelInfo.SelGate = 0;
537 SelInfo.GCPtrBase = Sel * 16;
538 SelInfo.cbLimit = ~0;
539 SelInfo.fFlags = DBGFSELINFO_FLAGS_REAL_MODE;
540 SelInfo.u.Raw.au32[0] = 0;
541 SelInfo.u.Raw.au32[1] = 0;
542 SelInfo.u.Raw.Gen.u16LimitLow = 0xffff;
543 SelInfo.u.Raw.Gen.u4LimitHigh = 0xf;
544 SelInfo.u.Raw.Gen.u1Present = 1;
545 SelInfo.u.Raw.Gen.u1Granularity = 1;
546 SelInfo.u.Raw.Gen.u1DefBig = 0; /* 16 bits */
547 SelInfo.u.Raw.Gen.u1DescType = 1;
548 SelInfo.u.Raw.Gen.u4Type = X86_SEL_TYPE_EO;
554 rc = SELMR3GetSelectorInfo(pVM, pVCpu, Sel, &SelInfo);
556 rc = SELMR3GetShadowSelectorInfo(pVM, Sel, &SelInfo);
568 rc = dbgfR3DisasInstrFirst(pVM, pVCpu, &SelInfo, enmMode, GCPtr, fFlags, &State);
585 &SelInfo);