search for: __xxx

Displaying 4 results from an estimated 4 matches for "__xxx".

Did you mean: _xxxx
2005 Aug 18
1
Persistent variables disappear when dialing Local extension
Hi, My persistent variables (_XXX or __XXX) don't persist when I dial a Local extension. I'm doing a forked dial where the other channel is SIP and the other Local. Is this a known problem? Using Asterisk 1.0.9. My purpose is to fork the original call to two destinations: One going to an "internal" SIP phone and the other...
2016 Jun 14
2
llvm intrinsics/libc/libm question
...> I'm not sure I follow about the RTLIB, I'm able to use an intrinsic >> for >> >> > floor (def int_floor::Intrinsic in IntrinsicsXXX.td) and still use >> RTLIB >> >> > to >> >> > generate the appropriate name for the function (ie __xxx_floor). It >> >> > sounds >> >> > like you're implying either/or, not both? >> >> >> >> No, I'm just saying that RTLIB only solves the codegen problem; you'll >> >> need something else (like your intrinsic?) to have bette...
2016 Jun 07
4
llvm intrinsics/libc/libm question
...These solve a related but different - CodeGen - problem. RTLIB libcalls are used when we're not able to select some IR instruction/intrinsic so have to rely on a runtime library helper function (e.g., the stuff in compiler-rt/lib/builtins/). So, #1 and #2 would make LLVM able to emit calls to __xxx_acos when it sees "@llvm.acos.f32", but it won't let LLVM optimize (constant fold, transform into the intrinsic, ...) "__xx_acos()" when it sees it. It sounds like you also want to recognize and optimize these calls. That involves (pre-CodeGen) IR-level optimizations. No, I...
2005 Aug 19
3
Persistent variables disappear when dialingLocal extension
Kevin P. Fleming wrote: > Falck Kenneth wrote: > > My persistent variables (_XXX or __XXX) don't persist when I dial a > > Local extension. I'm doing a forked dial where the other channel is > > SIP and the other Local. Is this a known problem? Using Asterisk 1.0.9. > > Variable inheritance is a CVS HEAD feature, it is not > supported in 1.0.x. Thanks,...