similar to: [LLVMdev] Dependence Analysis on Machine code

Displaying 20 results from an estimated 7000 matches similar to: "[LLVMdev] Dependence Analysis on Machine code"

2013 Mar 18
0
[LLVMdev] Dependence Analysis on Machine code
On Mar 15, 2013, at 3:18 AM, rahul <rahul3527 at gmail.com> wrote: > > Hi, > > I am trying to do dependence analysis (loop dependences) on machine code. > But, scalar evolution doesn't work as expected (like at IR level - opt pass). > I am not getting enough clue as to how to proceed.. > > One naive way of getting the dependence information can be > - Do
2013 Mar 14
2
[LLVMdev] Get underlying object for Machine level memory operation
Hi, I am writing a pass that works at machine level and runs as last pass in llc (just before converting llvm specific machine instructions into target specific instructions) In this pass I am trying to get underlying object for memory operations. It turns out that due to various optimizations on machine instructions, the memory operand in the operation is not always getelementptr (for e.g., it
2013 Mar 14
0
[LLVMdev] Get underlying object for Machine level memory operation
You can use the GetUnderlyingObjects function (notice the S at the end of the name) to collect zero or more underlying objects. This method is similar to GetUnderlyingObject except that it can look through phi and select instructions and return multiple objects. On Mar 14, 2013, at 4:15 AM, rahul <rahul3527 at gmail.com> wrote: > Hi, > > I am writing a pass that works at
2013 Mar 11
1
[LLVMdev] AESOP autoparallelizing compiler
Hi Rahul, Thanks for your interest! Our work does not attempt to make any significant contributions to alias analysis, and acts as a client to existing LLVM AA. Furthermore, the options passed to the AESOP frontend scripts are obeyed at compile time, but at link time certain transformations occur unconditionally. Here, AESOP has actually thwarted your experiment by performing inlining just
2013 Mar 11
0
[LLVMdev] AESOP autoparallelizing compiler
Hi Timothy, Today I happened to download the code and do some experiments. I actually wanted to see how you handle inter-procedure alias analysis. So, I set inline threshold to zero and tried out following example =============================================== #define N 1024 void func(double *A, double *B) { int i; for (i=1; i<N-2; i++) { B[i] = A[i] + i*3; } } void func1(double
2013 Mar 10
2
[LLVMdev] AESOP autoparallelizing compiler
On Mon, Mar 04, 2013 at 03:01:15PM +0800, 陳韋任 (Wei-Ren Chen) wrote: > Hi Timothy, > > > We would like to inform the community that we're releasing a version of our research compiler, "AESOP", developed at UMD using LLVM. AESOP is a distance-vector-based autoparallelizing compiler for shared-memory machines. The source code and some further information is available at
2018 Sep 07
2
An invalid directory pathname was passed
ubuntu at Ubunut:~$ sudo samba-tool dbcheck Checking 264 objects Checked 264 objects (0 errors) On Fri, Sep 7, 2018 at 2:33 PM Rowland Penny via samba < samba at lists.samba.org> wrote: > On Fri, 7 Sep 2018 08:41:27 +0530 > Vivek Patil <vivek.patil at forgeahead.io> wrote: > > > Hi, > > > > No, I have nothing install or update anything on the server. I
2018 Sep 04
2
Samba AD and DNS stopped on RSAT
Yes, i mixed up two thing that is confusing you. Well., I did nothing change on the server. And the smb.conf file is shared here is only from server. Do you need any more file output here. On Tuesday, September 4, 2018, Rowland Penny via samba < samba at lists.samba.org> wrote: > On Tue, 4 Sep 2018 00:21:19 +0530 > Vivek Patil <vivek.patil at forgeahead.io> wrote: > >>
2018 Sep 03
2
Samba AD and DNS stopped on RSAT
No, this is my server conf. Please suggest how I can fixed this. On Monday, September 3, 2018, Rowland Penny via samba <samba at lists.samba.org> wrote: > On Mon, 3 Sep 2018 23:44:49 +0530 > Vivek Patil <vivek.patil at forgeahead.io> wrote: > >> /usr/local/samba/etc/smb.conf >> >> # Global parameters >> [global] >> netbios name = UBUNTU
2018 Sep 04
2
Samba AD and DNS stopped on RSAT
Hi Andrew, Yes samba process still running. I can access my domain users on client machine. I can add DNS record too using samba-tool. But I can not access it's UI on RSAT. -Vivek On Tuesday, September 4, 2018, Andrew Bartlett <abartlet at samba.org> wrote: > On Mon, 2018-09-03 at 12:33 +0530, Vivek Patil via samba wrote: >> Hi All, >> >> I have live Samba AD DC
2018 Sep 03
2
Samba AD and DNS stopped on RSAT
/usr/local/samba/etc/smb.conf # Global parameters [global] netbios name = UBUNTU realm = MYDOMAIN.IO workgroup = MYDOMAIN dns forwarder = 8.8.8.8 allow dns updates = nonsecure and secure server role = active directory domain controller [netlogon] path = /usr/local/samba/var/locks/sysvol/mydomain.io/scripts read only = No [sysvol]
2018 Sep 07
2
An invalid directory pathname was passed
Hi, No, I have nothing install or update anything on the server. I want to fixed it first. I also not able to see the domain users using samba-tool user list. I can see it using pdbedit -L. On Fri, Sep 7, 2018 at 1:47 PM Rowland Penny via samba < samba at lists.samba.org> wrote: > On Fri, 7 Sep 2018 06:02:37 +0530 > Vivek Patil via samba <samba at lists.samba.org> wrote: >
2018 Sep 07
2
An invalid directory pathname was passed
No, we didn't change on the ADUC. Actually now I am not able to manage users through ADUC. It says access denied. I checked my admin user with kinit and found no issue. --Vivek P ________________________________ From: samba <samba-bounces at lists.samba.org> on behalf of Rowland Penny via samba <samba at lists.samba.org> Sent: Friday, September 7, 2018 4:02:05 PM To: samba at
2018 Sep 03
2
Samba AD and DNS stopped on RSAT
Hi, I have uploaded error images on following URL. Please check and guide me. M stuck on my live env. https://postimg.cc/image/5srwk7tud/ https://postimg.cc/image/oxv5tzg85/ I have my Samba on Ubuntu 14, and accessing it through RSAT. On Mon, Sep 3, 2018 at 7:26 PM Rowland Penny via samba < samba at lists.samba.org> wrote: > On Mon, 3 Sep 2018 12:33:36 +0530 > Vivek Patil via
2012 Oct 25
1
[LLVMdev] How to get Function object in LLVM Pass
I am writing a llvm pass which inserts some code in a function. In code generation, I want to insert code for a function call. But for this, I need to get function object from list of functions available with Module. When I try to get the function object by specifying function name, it returns null. I suppose this happens because clang removes function prototypes if the function is not called in
2018 Aug 25
4
How to set account lockout policy
Hi All, I have setup samba 4.3.9-Ubuntu AD DC, I want to setup password policy and account lockout policy to all my domain users. How I can do that. Please somebody give me the steps. -- Vivek Patil Assistant Manager - IT Forgeahead Solutions vivek.patil at forgeahead.io *O* +91 (0) 20 66 44 5900 | *M *+91 9579 216 049 601 Zero One, Level 6, Mundhwa, Pune 411036, Maharashtra, India *W*
2018 Sep 07
2
An invalid directory pathname was passed
No, windows automatically update is also disable. I even cant join my widows client to my domain. It says username or password invalid. I have 3 domain admin users, all got the same error. It's really very complicated for me, it is my live AD. --Vivek P ________________________________ From: samba <samba-bounces at lists.samba.org> on behalf of Rowland Penny via samba <samba at
2018 Sep 03
4
Samba AD and DNS stopped on RSAT
Hi All, I have live Samba AD DC running. Suddenly it stopped on RSAT. Both AD and DNS not accessible. Please attached screen shots and help me out as it is my live. -- Vivek Patil Assistant Manager - IT Forgeahead Solutions vivek.patil at forgeahead.io *O* +91 (0) 20 66 44 5900 | *M *+91 9579 216 049 601 Zero One, Level 6, Mundhwa, Pune 411036, Maharashtra, India *W* forgeahead.io *IN
2018 Sep 11
2
Replace old AD to new
Hi All, I have samba AD domain (mydomain.com). And my 60 windows clients are joined to it. Now I have setup a AD DC with the same name (mydomain.com). New domain has same IP, name as old. Now I want to remove old server and put new server to network. How my windows clients can authenticate with new domain without changing user profile? -- Vivek Patil Assistant Manager - IT Forgeahead Solutions
2013 Mar 15
0
[LLVMdev] Problems about developing LLVM pass on windows visual studio
I just want to know ,how can I developing a LLVM Pass on Windows' visual studio? I can develop a Pass on linux,but I can't do it on windows. 2013/3/15 <llvmdev-request at cs.uiuc.edu> > Send LLVMdev mailing list submissions to > llvmdev at cs.uiuc.edu > > To subscribe or unsubscribe via the World Wide Web, visit >