mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-07 08:34:59 +00:00
5fb5df9c83
target Objective-C runtime down to the frontend: break this down into a single target runtime kind and version, and compute all the relevant information from that. This makes it relatively painless to add support for new runtimes to the compiler. Make the new -cc1 flag, -fobjc-runtime=blah-x.y.z, available at the driver level as a better and more general alternative to -fgnu-runtime and -fnext-runtime. This new concept of an Objective-C runtime also encompasses what we were previously separating out as the "Objective-C ABI", so fragile vs. non-fragile runtimes are now really modelled as different kinds of runtime, paving the way for better overall differentiation. As a sort of special case, continue to accept the -cc1 flag -fobjc-runtime-has-weak, as a sop to PLCompatibilityWeak. I won't go so far as to say "no functionality change", even ignoring the new driver flag, but subtle changes in driver semantics are almost certainly not intended. llvm-svn: 158793
72 lines
1.3 KiB
Plaintext
72 lines
1.3 KiB
Plaintext
// RUN: %clang_cc1 -emit-llvm-only -std=c++11 -fblocks -o - -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 %s
|
|
// rdar://9362021
|
|
|
|
@class DYFuture;
|
|
@interface NSCache
|
|
- (void)setObject:(id)obj forKey:(id)key;
|
|
@end
|
|
|
|
template <typename T>
|
|
class ResourceManager
|
|
{
|
|
public:
|
|
~ResourceManager();
|
|
DYFuture* XXX();
|
|
NSCache* _spDeviceCache;
|
|
};
|
|
|
|
template <typename T>
|
|
DYFuture* ResourceManager<T>::XXX()
|
|
{
|
|
^ {
|
|
[_spDeviceCache setObject:0 forKey:0];
|
|
}();
|
|
|
|
return 0;
|
|
}
|
|
|
|
struct AnalyzerBaseObjectTypes { };
|
|
|
|
void FUNC()
|
|
{
|
|
ResourceManager<AnalyzerBaseObjectTypes> *rm;
|
|
^(void) { rm->XXX(); }();
|
|
}
|
|
|
|
namespace PR9982 {
|
|
template<typename T> struct Curry;
|
|
|
|
template<typename R, typename Arg0, typename Arg1, typename Arg2>
|
|
struct Curry<R (^)(Arg0, Arg1, Arg2)>
|
|
{
|
|
typedef R (^FType)(Arg0, Arg1, Arg2);
|
|
|
|
Curry(FType _f) : f(_f) {}
|
|
~Curry() {;}
|
|
|
|
R (^(^operator()(Arg0 a))(Arg1))(Arg2)
|
|
{
|
|
auto block = ^(Arg1 b) {
|
|
auto inner_block = ^(Arg2 c) {
|
|
return f(a, b, c);
|
|
};
|
|
return inner_block;
|
|
};
|
|
return block;
|
|
}
|
|
|
|
private:
|
|
FType f;
|
|
};
|
|
|
|
auto add = ^(int a, int b, int c)
|
|
{
|
|
return a + b + c;
|
|
};
|
|
|
|
void curry() {
|
|
Curry<__decltype(add)> c = Curry<__decltype(add)>(add);
|
|
auto t = c(1)(10)(100);
|
|
}
|
|
}
|