OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:returns_twice
(Results
1 - 25
of
30
) sorted by null
1
2
/external/clang/test/Sema/
attr-returns-twice.c
3
int a __attribute__((
returns_twice
)); // expected-warning {{'
returns_twice
' attribute only applies to functions}}
5
__attribute__((
returns_twice
)) void t0(void) {
8
void t1() __attribute__((
returns_twice
));
10
void t2() __attribute__((
returns_twice
(2))); // expected-error {{'
returns_twice
' attribute takes no arguments}}
12
typedef void (*t3)(void) __attribute__((
returns_twice
)); // expected-warning {{'
returns_twice
' attribute only applies to functions}}
uninit-variables.c
471
extern int setjmp(jmp_buf env); // implicitly
returns_twice
475
int
returns_twice
() {
function
/external/llvm/test/Transforms/Inline/
inline_returns_twice.ll
3
; Check that functions with "
returns_twice
" calls are only inlined,
6
declare i32 @a()
returns_twice
7
declare i32 @b()
returns_twice
11
%call = call i32 @a()
returns_twice
26
define i32 @h()
returns_twice
{
28
%call = call i32 @b()
returns_twice
38
%call = call i32 @h()
returns_twice
always-inline.ll
43
declare i32 @a()
returns_twice
44
declare i32 @b()
returns_twice
48
%call = call i32 @a()
returns_twice
63
define i32 @inner4() alwaysinline
returns_twice
{
65
%call = call i32 @b()
returns_twice
76
%call = call i32 @inner4()
returns_twice
/external/llvm/test/Transforms/TailCallElim/
setjmp.ll
3
; Test that we don't tail call in a functions that calls
returns_twice
18
declare i32 @setjmp(i32*)
returns_twice
29
declare i32 @zed2(i32*)
returns_twice
/external/clang/test/CodeGen/
function-attributes.c
104
__attribute__ ((
returns_twice
)) void f17(void);
105
__attribute__ ((
returns_twice
)) void f18(void) {
123
// CHECK: attributes [[RT]] = { nounwind optsize
returns_twice
{{.*}} }
126
// CHECK: attributes [[RT_CALL]] = { nounwind optsize
returns_twice
}
/external/valgrind/main/include/
pub_tool_libcsetjmp.h
77
__attribute__((
returns_twice
))
86
__attribute__((
returns_twice
))
95
__attribute__((
returns_twice
))
104
__attribute__((
returns_twice
))
/external/clang/test/Parser/
attributes.c
58
void __attribute__((
returns_twice
)) returns_twice_test();
/external/llvm/test/Transforms/Mem2Reg/
2007-08-27-VolatileLoadsStores.ll
45
declare i32 @_setjmp(%struct.__jmp_buf_tag*)
returns_twice
/external/llvm/test/Bitcode/
attributes-3.3.ll
145
define void @f24()
returns_twice
227
; CHECK: attributes #14 = {
returns_twice
}
attributes.ll
142
define void @f24()
returns_twice
224
; CHECK: attributes #14 = {
returns_twice
}
/external/llvm/utils/vim/
llvm.vim
53
syn keyword llvmKeyword
returns_twice
sanitize_thread sanitize_memory
/external/llvm/utils/
llvm.grm
175
|
returns_twice
/external/clang/include/clang/Basic/
Attr.td
464
let Spellings = [GNU<"
returns_twice
">, CXX11<"gnu", "
returns_twice
">];
Builtins.def
86
// j ->
returns_twice
(like setjmp)
[
all
...]
/external/llvm/lib/AsmParser/
LLLexer.cpp
590
KEYWORD(
returns_twice
);
/external/llvm/lib/IR/
Attributes.cpp
208
return "
returns_twice
";
[
all
...]
/prebuilts/sdk/tools/linux/
libclang.so
/external/clang/test/Index/
recursive-cxx-member-calls.cpp
160
.Case("
returns_twice
", AT_returns_twice)
[
all
...]
/prebuilts/clang/linux-x86/3.1/
clang
clang++
/external/llvm/docs/
LangRef.rst
[
all
...]
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/libexec/gcc/i686-linux/4.4.3/
cc1
cc1plus
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/libexec/gcc/i686-linux/4.6.x-google/
cc1
Completed in 1335 milliseconds
1
2