@@ -40,9 +40,9 @@ class EHScope {
40
40
41
41
class CommonBitFields {
42
42
friend class EHScope ;
43
- unsigned Kind : 2 ;
43
+ unsigned Kind : 3 ;
44
44
};
45
- enum { NumCommonBits = 2 };
45
+ enum { NumCommonBits = 3 };
46
46
47
47
protected:
48
48
class CatchBitFields {
@@ -81,7 +81,7 @@ class EHScope {
81
81
// / The number of fixups required by enclosing scopes (not including
82
82
// / this one). If this is the top cleanup scope, all the fixups
83
83
// / from this index onwards belong to this scope.
84
- unsigned FixupDepth : 32 - 18 - NumCommonBits; // currently 13
84
+ unsigned FixupDepth : 32 - 18 - NumCommonBits; // currently 12
85
85
};
86
86
87
87
class FilterBitFields {
@@ -99,7 +99,7 @@ class EHScope {
99
99
};
100
100
101
101
public:
102
- enum Kind { Cleanup, Catch, Terminate, Filter };
102
+ enum Kind { Cleanup, Catch, Terminate, Filter, CatchEnd };
103
103
104
104
EHScope (Kind kind, EHScopeStack::stable_iterator enclosingEHScope)
105
105
: CachedLandingPad(nullptr ), CachedEHDispatchBlock(nullptr ),
@@ -466,6 +466,17 @@ class EHTerminateScope : public EHScope {
466
466
}
467
467
};
468
468
469
+ class EHCatchEndScope : public EHScope {
470
+ public:
471
+ EHCatchEndScope (EHScopeStack::stable_iterator enclosingEHScope)
472
+ : EHScope(CatchEnd, enclosingEHScope) {}
473
+ static size_t getSize () { return sizeof (EHCatchEndScope); }
474
+
475
+ static bool classof (const EHScope *scope) {
476
+ return scope->getKind () == CatchEnd;
477
+ }
478
+ };
479
+
469
480
// / A non-stable pointer into the scope stack.
470
481
class EHScopeStack ::iterator {
471
482
char *Ptr ;
@@ -503,6 +514,10 @@ class EHScopeStack::iterator {
503
514
case EHScope::Terminate:
504
515
Size = EHTerminateScope::getSize ();
505
516
break ;
517
+
518
+ case EHScope::CatchEnd:
519
+ Size = EHCatchEndScope::getSize ();
520
+ break ;
506
521
}
507
522
Ptr += llvm::RoundUpToAlignment (Size , ScopeStackAlignment);
508
523
return *this ;
@@ -551,6 +566,14 @@ inline void EHScopeStack::popTerminate() {
551
566
deallocate (EHTerminateScope::getSize ());
552
567
}
553
568
569
+ inline void EHScopeStack::popCatchEnd () {
570
+ assert (!empty () && " popping exception stack when not empty" );
571
+
572
+ EHCatchEndScope &scope = cast<EHCatchEndScope>(*begin ());
573
+ InnermostEHScope = scope.getEnclosingEHScope ();
574
+ deallocate (EHCatchEndScope::getSize ());
575
+ }
576
+
554
577
inline EHScopeStack::iterator EHScopeStack::find (stable_iterator sp) const {
555
578
assert (sp.isValid () && " finding invalid savepoint" );
556
579
assert (sp.Size <= stable_begin ().Size && " finding savepoint after pop" );
@@ -588,6 +611,13 @@ struct EHPersonality {
588
611
static const EHPersonality MSVC_except_handler;
589
612
static const EHPersonality MSVC_C_specific_handler;
590
613
static const EHPersonality MSVC_CxxFrameHandler3;
614
+
615
+ bool isMSVCPersonality () const {
616
+ return this == &MSVC_except_handler || this == &MSVC_C_specific_handler ||
617
+ this == &MSVC_CxxFrameHandler3;
618
+ }
619
+
620
+ bool isMSVCXXPersonality () const { return this == &MSVC_CxxFrameHandler3; }
591
621
};
592
622
}
593
623
}
0 commit comments