search for: caller1

Displaying 9 results from an estimated 9 matches for "caller1".

Did you mean: caller
2016 Mar 23
2
[RFC] Lazy-loading of debug info metadata
...block, but any debug metadata referenced by multiple DISubprograms would not be located within one of these blocks? The problem is that the same subprogram may be referenced from multiple functions. Consider: -- void sink(); __attribute__((always_inline)) static inline void foo() { sink(); } void caller1() { foo(); } void caller2() { foo(); } void unrelated() {} -- The IR for caller1 and caller2 will both reference the subprogram for foo, something like: -- define void @caller1() !dbg !2 { call void @sink(), !dbg !5 ret void, !dbg !7 } define void @caller1() !dbg !3 { call void @sink(), !dbg...
2016 Mar 23
0
[RFC] Lazy-loading of debug info metadata
...d by > multiple DISubprograms would not be located within one of these blocks? > > The problem is that the same subprogram may be referenced from multiple > functions. Consider: > -- > void sink(); > __attribute__((always_inline)) static inline void foo() { sink(); } > void caller1() { foo(); } > void caller2() { foo(); } > void unrelated() {} > -- > > The IR for caller1 and caller2 will both reference the subprogram for > foo, something like: > -- > define void @caller1() !dbg !2 { > call void @sink(), !dbg !5 > ret void, !dbg !7 > } >...
2016 Mar 23
1
[RFC] Lazy-loading of debug info metadata
...enced by multiple DISubprograms would not be located within one of these blocks? > > The problem is that the same subprogram may be referenced from multiple > functions. Consider: > -- > void sink(); > __attribute__((always_inline)) static inline void foo() { sink(); } > void caller1() { foo(); } > void caller2() { foo(); } > void unrelated() {} > -- > > The IR for caller1 and caller2 will both reference the subprogram for > foo, something like: > -- > define void @caller1() !dbg !2 { > call void @sink(), !dbg !5 > ret void, !dbg !7 > } &gt...
2002 Aug 08
1
analysis of function dependencies / namespacing
I am going to document a 10.000 lines of R code project. Before reinventing the wheel, has anyone written a function that analyzes dependencies between R functions? I am thinking of output like caller1 calee1 caller1 calee2 caller1 : caller2 calee7 : and I would like to restrict caller and callee to certain positions in the search path. My guess is, that a quick and dirty solution is easy, but I have no idea how to filter out calls to locally defined functions. Furthermore I heard rumors a...
2002 Aug 08
1
analysis of function dependencies / namespacing
I am going to document a 10.000 lines of R code project. Before reinventing the wheel, has anyone written a function that analyzes dependencies between R functions? I am thinking of output like caller1 calee1 caller1 calee2 caller1 : caller2 calee7 : and I would like to restrict caller and callee to certain positions in the search path. My guess is, that a quick and dirty solution is easy, but I have no idea how to filter out calls to locally defined functions. Furthermore I heard rumors a...
2011 Aug 15
0
1.4.38 passing a Regular expression containing a pipe character to a macro ?
...ge on ; ${ARG4} - Users allowed to use the Macro exten => s,1,Set(OrgID=${ARG1}) exten => s,n,Set(SpyGroup=${ARG2}) exten => s,n,Set(Target=${ARG3}) exten => s,n,Set(AllowedUsers=${ARG4}) exten => s,n,NoOP(AllowedUsers:${AllowedUsers} Arg5:${ARG5} Arg6:${ARG6} ) exten => s,n,Set(caller1=${CDR(accountcode)}) exten => s,n,Set(Caller=${CUT(caller1,-,3)}) exten => s,n,GotoIf($[${Caller} =~ "${AllowedUsers}"]?ALLOW:DENY) exten => s,n(DENY),Congestion(5) exten => s,n,Hangup exten => s,n(ALLOW),Playback(tt-monkeys) exten => s,n,Hangup Extension that calls the...
2016 Mar 23
0
[RFC] Lazy-loading of debug info metadata
On Tue, Mar 22, 2016 at 7:28 PM, Duncan P. N. Exon Smith < dexonsmith at apple.com> wrote: > I have some ideas to allow the BitcodeReader to lazy-load debug info > metadata, and wanted to air this on llvm-dev before getting too deep > into the code. > > Motivation > ========== > > Based on some analysis Mehdi ran (ping him for details), there are three > (related)
2016 Mar 23
7
[RFC] Lazy-loading of debug info metadata
I have some ideas to allow the BitcodeReader to lazy-load debug info metadata, and wanted to air this on llvm-dev before getting too deep into the code. Motivation ========== Based on some analysis Mehdi ran (ping him for details), there are three (related) compile-time bottlenecks we're seeing with `-flto=thin -g`: a) Reading the large number of Metadata bitcode records in the global
2008 Nov 20
2
Collect digits from the Callee after the Call is connected.
Hello All, I want to collect the Digits input by the Callee after the Call is connected, i use the Dial Application to connect the Caller and Calllee, please can someone tell me how to do this ? ( Asterisk is in the media path ( Asterisk Version 1.4) ) . I have looked at the different Dial Application options, but could not find what i want or i missed something ? Thank