Mercurial > hg > CbC > CbC_llvm
diff clang/test/Sema/attr-enforce-tcb.cpp @ 207:2e18cbf3894f
LLVM12
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 08 Jun 2021 06:07:14 +0900 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/clang/test/Sema/attr-enforce-tcb.cpp Tue Jun 08 06:07:14 2021 +0900 @@ -0,0 +1,70 @@ +// RUN: %clang_cc1 -fsyntax-only -verify %s + +#define PLACE_IN_TCB(NAME) [[clang::enforce_tcb(NAME)]] +#define PLACE_IN_TCB_LEAF(NAME) [[clang::enforce_tcb_leaf(NAME)]] + +PLACE_IN_TCB("foo") void in_tcb_foo(); +void not_in_tcb(); + +// Test behavior on classes and methods. +class C { + void bar(); + + PLACE_IN_TCB("foo") + void foo() { + // TODO: Figure out if we want to support methods at all. + // Does it even make sense to isolate individual methods into a TCB? + // Maybe a per-class attribute would make more sense? + bar(); // expected-warning{{calling 'bar' is a violation of trusted computing base 'foo'}} + } +}; + +// Test behavior on templates. +template <typename Ty> +PLACE_IN_TCB("foo") +void foo_never_instantiated() { + not_in_tcb(); // expected-warning{{calling 'not_in_tcb' is a violation of trusted computing base 'foo'}} + in_tcb_foo(); // no-warning +} + +template <typename Ty> +PLACE_IN_TCB("foo") +void foo_specialized(); + +template<> +void foo_specialized<int>() { + not_in_tcb(); // expected-warning{{calling 'not_in_tcb' is a violation of trusted computing base 'foo'}} + in_tcb_foo(); // no-warning +} + +PLACE_IN_TCB("foo") +void call_template_good() { + foo_specialized<int>(); // no-warning +} +PLACE_IN_TCB("bar") +void call_template_bad() { + foo_specialized<int>(); // expected-warning{{calling 'foo_specialized<int>' is a violation of trusted computing base 'bar'}} +} + +template<typename Ty> +void foo_specialization_in_tcb(); + +template<> +PLACE_IN_TCB("foo") +void foo_specialization_in_tcb<int>() { + not_in_tcb(); //expected-warning{{calling 'not_in_tcb' is a violation of trusted computing base 'foo'}} + in_tcb_foo(); // no-warning +} + +template<> +void foo_specialization_in_tcb<double>() { + not_in_tcb(); // no-warning + in_tcb_foo(); // no-warning +} + +PLACE_IN_TCB("foo") +void call_specialization_in_tcb() { + foo_specialization_in_tcb<int>(); // no-warning + foo_specialization_in_tcb<long>(); // expected-warning{{calling 'foo_specialization_in_tcb<long>' is a violation of trusted computing base 'foo'}} + foo_specialization_in_tcb<double>(); // expected-warning{{'foo_specialization_in_tcb<double>' is a violation of trusted computing base 'foo'}} +}