Displaying 1 result from an estimated 1 matches for "needssafepoint".
Did you mean:
needssafepoints
2011 Oct 31
2
[LLVMdev] Adding a custom GC safe point creation phase
...//< If set, roots are nulled during
lowering.
bool UsesMetadata; //< If set, backend must emit metadata
tables.
@@ -87,7 +90,9 @@
/// needsSafePoitns - True if safe points of any kind are required. By
// default, none are recorded.
- bool needsSafePoints() const { return NeededSafePoints != 0; }
+ bool needsSafePoints() const {
+ return CustomSafePoints || NeededSafePoints != 0;
+ }
/// needsSafePoint(Kind) - True if the given kind of safe point is
// required. By default, none are recorded.
@@ -109,6...