search for: loca

Displaying 20 results from an estimated 157 matches for "loca".

Did you mean: local
2009 Mar 07
2
Recode factor into binary factor-level vars
How to I "recode" a factor into a binary data frame according to the factor levels: ### example:start set.seed(20) l <- sample(rep.int(c("locA", "locB", "locC", "locD"), 100), 10, replace=T) # [1] "locD" "locD" "locD" "locD" "locB" "locA" "locA" "locA" "locD" "locA" ### example:end What I want in the...
2018 Apr 06
2
PJSip CallerID Question
I have multiple Asterisk instances set up in different locations and would like to modify the callerID of inbound calls to identify which instance the call is coming from.? I knew how to do that with the old sip format, but can't seem to figure it out with PJSip. For example: Currently Location A, extension 10 calls Location B, extension 20.? Call...
2006 Aug 24
0
Guest Domains drop from network
...DomainInfo] DEBUG (XendDomainInfo:881) XendDomainI nfo.handleShutdownWatch [2006-08-23 15:25:16 xend] DEBUG (DevController:132) Waiting for devices vif. [2006-08-23 15:25:16 xend] DEBUG (DevController:138) Waiting for 0. [2006-08-23 15:25:16 xend] DEBUG (DevController:403) hotplugStatusCallback /loca l/domain/0/backend/vif/25/0/hotplug-status. [2006-08-23 15:25:16 xend] DEBUG (DevController:403) hotplugStatusCallback /loca l/domain/0/backend/vif/25/0/hotplug-status. [2006-08-23 15:25:16 xend] DEBUG (DevController:417) hotplugStatusCallback 1. [2006-08-23 15:25:16 xend] DEBUG (DevController:13...
2017 Jul 14
2
PartialAlias: different start addresses
...1) This condition seems very strict and I don't think it's met in a few >> places I found by manual inspection > If I read the definition correctly, at least our Andersens' AA > implementation violates it. > see: > > AliasResult CFLAndersAAResult::alias(const MemoryLocation &LocA, > const MemoryLocation &LocB) { > if (LocA.Ptr == LocB.Ptr) > return LocA.Size == LocB.Size ? MustAlias : PartialAlias; > > > (i.e. the two objects are overlapping here *and* start at the same address). I've nev...
2017 Jul 14
2
PartialAlias: different start addresses
Hi, I going through the alias analysis documentation (http://llvm.org/docs/AliasAnalysis.html) and noticed the following in the definition of PartialAlias: " The PartialAlias response is used when the two memory objects are known to be overlapping in some way, but *do not start at the same address*. " Is it really required that the objects do no start at the same address? if
2013 Jan 22
0
[LLVMdev] Writing a new AA pass
...lt;index calculation> ; ... %addr23 = getelementptr double* %v19, i64 %v22 %getitem24 = load double* %addr23 ---- /IR ---- Right now I'm forwarding alias() calls to base class and just observing the current alias analysis result. Here's a portion of the output ---- Debug ---- LocA %gep9 = getelementptr inbounds %Slice* %a, i64 0, i32 0 LocB %gep18 = getelementptr inbounds %Slice* %b, i64 0, i32 0 Aliases? 0 LocA %addr = getelementptr double* %v10, i64 %v11 LocB %gep18 = getelementptr inbounds %Slice* %b, i64 0, i32 0 Aliases? 0 LocA %gep9 = getelementptr inbou...
2010 Nov 12
0
Crash When installing Ultima Online when trying to edit loca
Whenever i try and instal ultima online i get pretty far into the instalation and then when it gets to the part where i need to select a directory if i try to type in the location or anything it crashes. if i do nothing i can't go any farther. Help!?
2009 Mar 06
4
Summary grouped by factor
### example:start v <- sample(rnorm(200), 100, replace=T) k <- rep.int(c("locA", "locB", "locC", "locD"), 25) tapply(v, k, summary) ### example:end ... (hopefully) produces 4 summaries of v according to k group membership. How can I transform the output into a nice table with the croups as columns and the interesting statistics as lines...
2017 Jul 14
2
PartialAlias: different start addresses
...ies. So here seems to be an agreement that the documentation for PartialAlias is incorrect. Daniel: now you got me wondering about MustAlias. This is what the docs say: "The MustAlias response may only be returned if the two memory objects are *guaranteed to always start at exactly the same location*" This statement is regardless of the access sizes. For example, in SCEV AA: // If they evaluate to the same expression, it's a MustAlias. if (AS == BS) return MustAlias; AS/BS are scev expressions for the pointers. So no check for the access size. So, does must needs to check f...
2017 Jul 16
4
PartialAlias: different start addresses
...t;> > >>>> Daniel: now you got me wondering about MustAlias. This is what the > >>>> docs say: > >>>> "The MustAlias response may only be returned if the two memory > >>>> objects are *guaranteed to always start at exactly the same location*" > >>>> > >>>> This statement is regardless of the access sizes. For example, in > >>>> SCEV AA: > >>>> // If they evaluate to the same expression, it's a MustAlias. > >>>> if (AS == BS) > >>>>...
2017 Jul 15
2
PartialAlias: different start addresses
...ncorrect. >>>> >>>> Daniel: now you got me wondering about MustAlias. This is what the docs >>>> say: >>>> "The MustAlias response may only be returned if the two memory objects >>>> are *guaranteed to always start at exactly the same location*" >>>> >>>> This statement is regardless of the access sizes. For example, in SCEV >>>> AA: >>>> // If they evaluate to the same expression, it's a MustAlias. >>>> if (AS == BS) >>>> return MustAlias; >>&gt...
2017 Jul 15
2
PartialAlias: different start addresses
...tation for PartialAlias >> is incorrect. >> >> Daniel: now you got me wondering about MustAlias. This is what the docs >> say: >> "The MustAlias response may only be returned if the two memory objects >> are *guaranteed to always start at exactly the same location*" >> >> This statement is regardless of the access sizes. For example, in SCEV >> AA: >> // If they evaluate to the same expression, it's a MustAlias. >> if (AS == BS) >> return MustAlias; >> >> AS/BS are scev expressions for the point...
2012 Mar 07
3
[LLVMdev] Alias analysis result
...(Function::iterator i=F.begin();i!=F.end();++i){ for(BasicBlock::iterator j=i->begin();j!=i->end();++j) { if(dyn_cast<StoreInst>(j)){ const StoreInst *SI=dyn_cast<StoreInst>(j); AliasAnalysis::Location LocA = AA.getLocation(SI); const Value *si_v= SI->getPointerOperand(); for(Function::arg_iterator k=F.arg_begin(); k!=F.arg_end();++k) { Value *v=dyn_cast<Value>(k); Alias...
2015 Apr 21
2
[LLVMdev] Using an alias analysis pass
...; InitializeAliasAnalysis(this, &f.getParent()->getDataLayout()); > return false; > } > > virtual void getAnalysisUsage(AnalysisUsage &AU) const override > { > AliasAnalysis::getAnalysisUsage(AU); > } > > virtual AliasResult alias(const Location &LocA, const Location &LocB) override > { > const Value *V1 = LocA.Ptr; > const Value *V2 = LocB.Ptr; > > const PointerType *PT1 = dyn_cast<const PointerType>(V1->getType()); > const PointerType *PT2 = dyn_cast<const PointerType>(V2-&gt...
2012 Apr 13
2
[LLVMdev] Incorrect result in LLVM Alias Analysis
...for(Function::iterator i=F.begin();i!=F.end();++i){ for(BasicBlock::iterator j=i->begin();j!=i->end();++j) { if(dyn_cast<StoreInst>(j)) { StoreInst *SI=dyn_cast<StoreInst>(j); AliasAnalysis::Location LocA = AA.getLocation(SI); for(Function::arg_iterator k=F.arg_begin(); k!=F.arg_end();++k) { Value *v=dyn_cast<Value>(k); AliasAnalysis::Location loc=AliasAnalysis::Location(v);...
2019 Jun 05
2
Question about a AA result and its use in Dependence Analysis
Oh. So it wasn't just the memory location size that was incorrect on those aliasing checks. I took a look at the tests and it appears that the alias call also catches some cases of restrict/noalias attributes, along with the tbaa info. My first idea of constructing an alias call with no Ptr's but valid tbaa info won't catch th...
2006 Apr 05
4
fax server functionality on Asterisk
...nc problem). Any experiences/hints/suggestions? Or how would I best use Asterisk and Hylafax? Would IAXmodem work reliable? Anyone here using this with BRI? Or what about using Asterisk+HylaFax+CAPI (e.g. AVM C4)? Is there another way of using Asterisk as a reliable faxserver with BRI? Frank -- LocaNet oHG - http://www.loca.net Lindemannstrasse 81, D-44137 Dortmund tel +49 231 91596-23, mobil +49 172 2120354 SIP:23@voip.loca.net
2017 Jul 16
2
PartialAlias: different start addresses
...e wondering about MustAlias. This is what the >>>>>>> docs say: >>>>>>> "The MustAlias response may only be returned if the two memory >>>>>>> objects are *guaranteed to always start at exactly the same >>>>>>> location*" >>>>>>> >>>>>>> This statement is regardless of the access sizes. For example, in >>>>>>> SCEV AA: >>>>>>> // If they evaluate to the same expression, it's a MustAlias. >>>>>>> i...
2019 Jul 08
3
New User Questions - With Belkin USB
2015 Jan 15
3
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
On Thu, Jan 15, 2015 at 1:26 PM, Nick Lewycky <nlewycky at google.com> wrote: > On 15 January 2015 at 13:10, Daniel Berlin <dberlin at dberlin.org> wrote: > >> Yes. >> I've attached an updated patch that does the following: >> >> 1. Fixes the partialalias of globals/arguments >> 2. Enables partialalias for cases where nothing has been unified to