You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.1 KiB
60 lines
1.1 KiB
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include <Foundation/Foundation.h>
|
|
|
|
@interface Singleton : NSObject
|
|
|
|
@property int x;
|
|
|
|
@end
|
|
|
|
typedef void (^MyBlock)();
|
|
|
|
void dispatch(MyBlock block) { block(); }
|
|
|
|
@implementation Singleton
|
|
|
|
// Common FP in Pulse NPEs, this requires block specialization
|
|
- (int)dispatch_once_no_npe_good_FP {
|
|
static Singleton* a = nil;
|
|
static dispatch_once_t onceToken;
|
|
dispatch_once(&onceToken, ^{
|
|
a = [[Singleton alloc] init];
|
|
});
|
|
return a->_x;
|
|
}
|
|
|
|
- (int)dispatch_no_npe_good {
|
|
static Singleton* a = nil;
|
|
static dispatch_once_t onceToken;
|
|
dispatch(^{
|
|
a = [[Singleton alloc] init];
|
|
a->_x = 5;
|
|
});
|
|
return a->_x;
|
|
}
|
|
|
|
@end
|
|
|
|
int captured_npe_bad() {
|
|
int* x = NULL;
|
|
int (^my_block)(void) = ^() {
|
|
return *x;
|
|
};
|
|
return my_block();
|
|
}
|
|
|
|
int captured_npe_ok_FP(int* y) {
|
|
__block int* x = NULL;
|
|
void (^my_block)(void) = ^() {
|
|
x = y;
|
|
};
|
|
my_block();
|
|
return *x;
|
|
}
|