search for: callinfo

Displaying 20 results from an estimated 25 matches for "callinfo".

Did you mean: mallinfo
2015 Feb 22
2
[LLVMdev] Eliminating redundant loads
Hi, I am generating following code: %base = getelementptr inbounds %ravi.CallInfo* %6, i32 0, i32 4, i32 0 %7 = load %ravi.TValue** %base %8 = bitcast %ravi.TValue* %7 to i8* %9 = bitcast %ravi.TValue* %5 to i8* call void @llvm.memcpy.p0i8.p0i8.i32(i8* %8, i8* %9, i32 16, i32 8, i1 false) %10 = load %ravi.CallInfo** %L_ci %base1 = getelementptr inbounds %ravi.CallInf...
2015 Feb 23
2
[LLVMdev] Eliminating redundant loads
...ant GEP instructions, leaving just the loads. Here is a dump that shows the output after running the optimizer passes (this is from the passes in my program not opt -O3; this version does not use memcpy() either): %L_ci = getelementptr inbounds %ravi.lua_State* %L, i64 0, i32 6 %0 = load %ravi.CallInfo** %L_ci, align 8 %base = getelementptr inbounds %ravi.CallInfo* %0, i64 0, i32 4, i32 0 %1 = bitcast %ravi.CallInfo* %0 to %ravi.LClosure*** %2 = load %ravi.LClosure*** %1, align 8 %3 = load %ravi.LClosure** %2, align 8 %Proto = getelementptr inbounds %ravi.LClosure* %3, i64 0, i32 5 %4...
2005 Jul 20
1
Announcement: YAACID (Caller ID for Asterisk)
...en a call comes in 2. Has the ability to spawn a web browser and when a call comes in, and it can pass any of the following variables to a given web page: $CALLERID,$CALLERIDNAME, and $UNIQUEID So, YAACID can be configured to have the following url: http://www.shatterit.com/callinfo.php?cid=$CALLERID&name=$CALLERIDNAME&id=$UNIQUEID if a call comes in from: 716-852-5872, it will spawn a browser and go to: http://www.shatterit.com/callinfo.php?cid=17168525872&name=Mark+Musone&id=12345.3 3.YAACID can hold up to 50 calls in its Call ID History....
2010 Sep 10
0
Asterisk SIP woes
...ote side packet saver version = 3. translateCID =12345678. UNSPECIFIED_INDEX h323[177] [0]: tcall:doTranslation inc=1 iprgIndex=0. CallInfo [178]: origCalled.digit(61008) callingparty (12345678) . ch |01/01| 2010/09/10|16:53:42:655 |h323[178] [-1976852028]: ocall:stackSendCallProc ocall:setIPMedia():Setting My IP to 10.152.0.248 H323OrigCall::stac...
2015 Feb 22
2
[LLVMdev] Eliminating redundant loads
On 22 February 2015 at 20:58, David Jones <djones at xtreme-eda.com> wrote: > Not sure if this is your problem, but it was mine: > > You must create (or obtain) a DataLayout *and install it into the Module*. > > It is possible to generate machine code for IR and not install the > DataLayout into the Module. Rather, the DataLayout is used locally at the > point where code
2006 Jun 26
0
[klibc 30/43] parisc support for klibc
...c/crt0.S b/usr/klibc/arch/parisc/crt0.S new file mode 100644 index 0000000..0922446 --- /dev/null +++ b/usr/klibc/arch/parisc/crt0.S @@ -0,0 +1,37 @@ + .align 4 + + .import $global$, data + .import __libc_init, code + + .global _start + .export _start, ENTRY + .type _start, at function + + .proc + .callinfo + +_start: +/* extend the stack by 64-bytes */ + ldo 64(%sp), %sp + +/* %r25 = argc + * %r24 = argv + * envp = argv + (argc + 1) + * elfdata = (argv - 4) + */ + ldo -4(%r24), %r26 + +/* load global data */ + ldil L%$global$, %dp + ldo R%$global$(%dp), %dp + +/* parisc abi puts the atexit pointer in...
2013 Jan 20
2
[LLVMdev] soft float signature problem
...ran into one unexpected wrinkle. It effects efficiency as opposed to correctness but I'd like to figure out the best way to resolve it. The signatures for the libcall routines have floating point arguments in at least some situations. I have not fully examined if it's all of them. So in callinfo while I'm lowering the call, the first argument for example will appear to be a float. For sure in the following situation: float f; ... printf("%f \n", f); So it generates a libcall to widen f to double. long int XXX_extendsfdf2(float); The problem for me is that the parameter...
2013 Jan 22
0
[LLVMdev] soft float signature problem
...d wrinkle. It effects efficiency as opposed to > correctness but I'd like to figure out the best way to resolve it. > > The signatures for the libcall routines have floating point arguments > in at least some situations. I have not fully examined > if it's all of them. So in callinfo while I'm lowering the call, the > first argument for example will appear to be a float. > > For sure in the following situation: > > float f; > ... > printf("%f \n", f); > > So it generates a libcall to widen f to double. > > long int XXX_extendsfdf2(...
2004 Oct 03
0
Tenor AS cancells calls through Asterisk
...cause=0x29 redir=. ch |01/01| 2000/01/01|08:57:53:005 TBCSM [64]: Release complete from peer=0x963267d8. ch |01/01| 2000/01/01|08:57:53:005 OBCSM[64]: Trying another route. ch |01/01| 2000/01/01|08:57:53:005 Route response [64]: result=0 cause=34. ch |01/01| 2000/01/01|08:57:53:005 CallInfo[64]: fail event. cause=41 legno=0. ch |01/01| 2000/01/01|08:57:53:005 CallInfo[64]: sendFailed leg=0 0. ch |01/01| 2000/01/01|08:57:53:005 tsi connect: 000 1009 10 ch |01/01| 2000/01/01|08:57:53:055 CasManager: [2,0,1,1] Sent message to cas: Alert. ch |01/01| 2000/01/01|08:57:53...
2015 Aug 01
2
[LLVMdev] Strange code generation issue
Hi, I am using the LLVM release_37 branch and have a strange issue. Please see the two IR outputs I have saved below: https://github.com/dibyendumajumdar/ravi/tree/master/ravi-tests/comp_issue The original.ll is the code I am generating. The aftercompiling.ll is the output from LLVM with opt level 0. The issue is that LLVM is deciding to remove the blocks with labels updatei and updatei.64
2005 Jan 29
7
Sipura SPA-841 auto-answer support [patch]
...; ; Assuming ALLPHONES variable is set to all extensions, ; the following will do a system-wide page when from the ; default context when the user presses zero ; [default] exten => 0,1,Macro(intercom,${ALLPHONES}) The patch is relative to the base Asterisk source directory. Geoff begin 644 callinfo.tgz M'XL(`````````^U8>V_:2!#/O^13;*D40;`3V[RI4H4+KH)*(`*2JW0ZK1Q[ M@;T:V[=>\FB;[WZS:YMG2&A[T5TECU*OO3NOG9WYS5+;<EWJC?RCP.+V9.]5 M2`.JE$IRK%8J<M2,Z%O3='@M[NF:7JU4R\6R5MW3])*N%_>0]CKNK-(LY!9# M:&],_-'H&3Y@>W8]VHPV'W\14E4564$0'L,#.]1RC^PCG]%QQM"TL...
2005 Feb 14
1
Sipura 841 and paging function
I was browsing through the web config of a Sipura SPA-841 (Firmware 2.0.13) and noticed a setting marked 'paging' under supplementary services on the Phone settings page on the advanced admin login. Anyone know how it might be used? Could it be like the Snom - exten => 10,1,SetVar(VXML_URL=intercom=true) exten => 10,2,Dial(SIP/testuser) Craig
2007 May 22
1
Why 2 branches of asterisk development?
Hi all, i never understood that why is there 2 branches of asterisk going on parallel. asterisk 1.2.* and asterisk 1.4.*, i also heard about beginning of another branch which will be 1.6.*. so whats the difference between these 2 or 3 versions, can anybody plz tel me? -- Rizwan Hisham Software Engineer AXVOICE Inc. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2018 Oct 04
3
Spontaneous reboot due to MySQL lookups ?
...nfo:3] MYSQL("SIP/SipAgenT01-0000317d", "Connect connid localhost myuser mypwd myDB") in new stack [Aug 22 15:19:10] VERBOSE[2977] pbx.c: [Aug 22 15:19:10]     -- Executing [s at sub-GetAlertInfo:5] MYSQL("SIP/SipAgenT01-0000317d", "Query resultid 1 SELECT uri, callinfo FROM distringtone WHERE onoff='1'") in new stack [Aug 22 15:19:18] VERBOSE[3306] config.c: [Aug 22 15:19:18]   == Parsing '/etc/asterisk/logger.conf': [Aug 22 15:19:18] VERBOSE[3306] config.c: [Aug 22 15:19:18]   == Found [Aug 22 15:19:18] VERBOSE[3306] config.c: [Aug 22 15:...
2013 Jun 21
3
[LLVMdev] ExpandDivRemLibCall vs. AEABI
...xpansion that on AEABI case, the remainder is not on the stack, but on registers. However, SelectionDAGLegalize::ExpandDivRemLibCall() assumes the remainder is *always* on the stack, as is the case for GNU: // Remainder is loaded back from the stack frame. SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr, MachinePointerInfo(), false, false, false, 0); Since I don't want to add a target-specific condition there, and I found no hierarchy for DAGLegalize, I'm wondering what's the best approach. Two options could be: * Creating a feature (HasDivR...
2010 Apr 12
2
Asterisk room monitor
I want to use a voip speaker phone as a room monitor. Requirements: A phone that I can set to auto answer in speaker mode. A phone with a good speaker phone. Ability to make the audio one way. I want to monitor the room but not have my voice heard in the room. Yes, the mute button can accomplish this also. I have been using the SPA942's around the house (the speaker is just ok but
2018 Oct 04
4
Spontaneous reboot due to MySQL lookups ?
...1-0000317d", "Connect >> connid localhost myuser mypwd myDB") in new stack >> [Aug 22 15:19:10] VERBOSE[2977] pbx.c: [Aug 22 15:19:10] -- Executing >> [s at sub-GetAlertInfo:5] MYSQL("SIP/SipAgenT01-0000317d", "Query >> resultid 1 SELECT uri, callinfo FROM distringtone WHERE onoff='1'") >> in new stack >> [Aug 22 15:19:18] VERBOSE[3306] config.c: [Aug 22 15:19:18]   == >> Parsing '/etc/asterisk/logger.conf': [Aug 22 15:19:18] VERBOSE[3306] >> config.c: [Aug 22 15:19:18]   == Found >> [Aug 22...
2014 Mar 31
1
Video calls using Cisco phones are 176x144(QCIF) and 15FPS both ways
...,response="f51a7522b01c90b81509d2274e9b69bb",nonce="5b43e5a6",algorithm=MD5 Expires: 180 Accept: application/sdp Allow: ACK,BYE,CANCEL,INVITE,NOTIFY,OPTIONS,REFER,REGISTER,UPDATE,SUBSCRIBE,INFO Supported: replaces,join,sdp-anat,norefersub,resource-priority,extended-refer,X-cisco-callinfo,X-cisco-serviceuri,X-cisco-escapecodes,X-cisco-service-control,X-cisco-srtp-fallback,X-cisco-monrec,X-cisco-config,X-cisco-sis-6.0.2,X-cisco-xsi-8.5.1 Allow-Events: kpml,dialog Content-Length: 685 Content-Type: application/sdp Content-Disposition: session;handling=optional v=0 o=Cisco-SIPUA 27778...
2008 Jul 02
0
[LLVMdev] Problems expanding fcmp to a libcall
...CodeGen/SelectionDAG/ > LegalizeDAG.cpp 2008-05-12 20:46:27.000000000 +0100 > +++ /home/richard/local/llvm/tools_llvm/src/lib/CodeGen/SelectionDAG/ > LegalizeDAG.cpp 2008-07-01 23:33:21.000000000 +0100 > @@ -5287,9 +5287,11 @@ > break; > case Expand: > ExpandOp(CallInfo.first, Result, Hi); > + if (Hi.Val) > + Hi = LegalizeOp(Hi); > break; > } > - return Result; > + return LegalizeOp(Result); > } This seems to break the convention. It should be the responsibility of the caller to further legalize the results. Evan > >...
2008 Jul 01
2
[LLVMdev] Problems expanding fcmp to a libcall
Evan Cheng wrote: > On Jun 25, 2008, at 5:13 AM, Richard Osborne wrote: > > >> Evan Cheng wrote: >> >>> On Jun 23, 2008, at 5:35 AM, Richard Osborne wrote: >>> >>> >>>> I'm trying to write a backend for a target with no hardware floating >>>> point support. I've added a single i32 register class. I'm