search for: inst

Displaying 20 results from an estimated 3093 matches for "inst".

Did you mean: init
2007 Dec 07
2
Problems compiling xapian-core to run omega, SunOS
Hello xapian users, The server I'm compiling on is a little odd. SunOS on a sun4 architecture. Fails when linking, gives the following, memcpy 0x10 /usr/local/gcc-3.3.2/lib/./libstdc++.a(ctype.o) ld: fatal: relocations remain against allocatable but non-writable sections collect2: ld returned 1 exit status *** Error code 1 make: Fatal error: Command failed for target `libxapian.la' Current working directory /Net/www/webdata/htdocs/UCB/StudentGroups/cogsci/xapian-core-1.0.4 *** Error code 1 make: Fatal error: Command f...
2009 Sep 24
3
[LLVMdev] Is line number in DbgStopPointInst in LLVM accurate?
Dear developers, When I try to map line numbers in source code back to LLVM basicblocks, I meet some problems: there is a source file with 1500 lines of code, but when I use BasicBlockPass to collect all DbgStopPoint instructions in this file, I can only get 500 lines of code. The source code and the collected results are both attached. Is there any way to map line numbers in source code back to an LLVM basicblock precisely? Can LLVM-2.6 do this? Thanks, Heming -------------- next part --------------...
2020 Jun 17
2
InstCombine doesn't delete instructions with token
Hello David, I am having an issue with some custom intrinsics that return a token value: InstCombine deletes the users of the token but not the instruction that creates the token itself. The IR is still valid but it's wasted. The source of the issue is coming from an old patch of yours: commit 7204cff0a121ebc770cf81f7f94679ae7324daae Author: David Majnemer <david.majnemer at gmail....
2013 Sep 17
2
processing of /vignettes and /inst/doc
It is stated in R-exts that Sweave files (.Rnw) are either processed in /vignettes or /inst/doc, not both. Furthermore, it is stated that external manuals and other files in /inst/doc will be installed. This behaviour has been used to deal with the situation where a package has two "vignettes", one that is easily processed and one that has a long running time. This could be d...
2020 Jun 17
2
InstCombine doesn't delete instructions with token
Yes, it's still respected in this case, as the only instructions that will be deleted have been RAUW with undef. Originally, all instructions where RAUW but only non-EHPad were deleted (that means EHPad were RAUW but not deleted). Then it was later patched by not RAUW token instructions and now not deleting EHPad nor token instructions. My assumption i...
2016 Jul 27
1
[PATCH] gr/nv3x: fix instobj write offsets in gr setup
...f --git a/drm/nouveau/nvkm/engine/gr/nv30.c b/drm/nouveau/nvkm/engine/gr/nv30.c index 69de8c6..f1e15a4 100644 --- a/drm/nouveau/nvkm/engine/gr/nv30.c +++ b/drm/nouveau/nvkm/engine/gr/nv30.c @@ -76,8 +76,8 @@ nv30_gr_chan_new(struct nvkm_gr *base, struct nvkm_fifo_chan *fifoch, nvkm_wo32(chan->inst, i, 0x00040004); for (i = 0x1f18; i <= 0x3088 ; i += 16) { nvkm_wo32(chan->inst, i + 0, 0x10700ff9); - nvkm_wo32(chan->inst, i + 1, 0x0436086c); - nvkm_wo32(chan->inst, i + 2, 0x000c001b); + nvkm_wo32(chan->inst, i + 4, 0x0436086c); + nvkm_wo32(chan->inst, i + 8, 0x000c00...
2018 Jul 06
0
NEWS vs. inst/NEWS
'Writing R Extensions', section 1.1.5, in the part about a package's 'inst' directory, says that if NEW is in both the top level and in the inst directory, the in inst will be installed: Note that with the exceptions of INDEX, LICENSE/LICENCE and NEWS, information files at the top level of the package will *not* be installed and so not be known to users of Windows an...
2005 Feb 27
3
Cygwin-bug#20050227T2233: liboggz: Missing manual pages - oggzinfo, oggzed, oggzdiff
Package: liboggz Version: 0.9.0 Status: Severity: normal [Keep CC if you reply, I'm nt in this list] After porting the package to Cygwin, some binaries do not have accompnying manual pages. ... .inst/usr/share/man/man1/oggzdump.1.gz .inst/usr/share/man/man1/oggzdiff.1.gz .inst/usr/share/man/man1/oggzmerge.1.gz .inst/usr/share/man/man1/oggzrip.1.gz .inst/usr/include .inst/usr/include/oggz .inst/usr/include/oggz/oggz.h .inst/usr/include/oggz/oggz_constants.h .inst/usr/include/oggz/oggz_read.h .in...
2020 Jun 17
2
InstCombine doesn't delete instructions with token
...he string ‘undef’ can be used anywhere a constant is expected, and indicates that the user of the value may receive an unspecified bit-pattern. Undefined values may be of any type (other than ‘label’ or ‘ void’) and be used anywhere a constant is permitted. Either way, using a 'none' token instead is fine. For an example: https://godbolt.org/z/MowxS_ Where the following input: define void @foo() #0 { entry: unreachable exit: %tok = call token @llvm.bar() call void @llvm.foo(token %tok) call void @llvm.foo(token none) call void @llvm.foo(token undef) ret void }...
2019 Mar 25
2
Printing PC-relative offsets - how to get the instruction length?
Hi In my MC6809 backend, in llvm/lib/Target/MC6809/InstPrinter/MC6809InstPrinter.cpp, I have the routine void MC6809InstPrinter::printPCRelImmOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O) { const MCOperand &Op = MI->getOperand(OpNo); ZZ if (Op.isImm()) { int64_t Imm = Op.getImm() + 2; <<<========================...
2012 Oct 15
2
[LLVMdev] Alternate instruction encoding for subtargets
Hello, I have a compiler in LLVM 2.9 for the KCPM3 processor. I'd like to create a subtarget for the new cpu version called KCPSM6. Besides a couple of new instructions which are not important at the moment, the KCPSM6 cpu has different instruction opcodes. Semantically the instructions are the same, hence I'd like to keep all the lowering and pattern matching stuff unmodified For example, the ADD sX, sY instruction in KCPSM3 is: Inst{17-12} = 0b01100...
2016 Nov 28
2
LLVM Pass for Instructions in Function (error
Hi, Sent via the Samsung Galaxy Note® 3, an AT&T 4G LTE smartphone -------- Original message -------- From: Gurunath Kadam via llvm-dev <llvm-dev at lists.llvm.org> Date: 11/27/2016 7:49 PM (GMT-06:00) To: llvm-dev at lists.llvm.org Subject: [llvm-dev] LLVM Pass for Instructions in Function (error Hi, Please find the embedded code. Also you may follow http://llvm.org/docs/ProgrammersManual.html#iterating-over-the-instruction-in-a-function - Sandeep I have following lines in my code, where I need to iterate over the instructions in the function (not BB): for (...
2014 Aug 25
1
vignette index going AWOL
...eeps going AWOL, or at least R CMD check ?as-cran thinks so. I?ve tried several things and gave myself the weekend to think of other things, but I can?t figure it out. Perhaps someone on the list can lend a hand. Here?s one example situation, where I build the index.html file myself and put it in inst/doc/index.html $ cat fastR.Rcheck/00check.log | grep -v OK * using log directory ?/Users/rpruim/projects/github/fastR/fastR.Rcheck? * using R Under development (unstable) (2014-08-21 r66456) * using platform: x86_64-apple-darwin13.1.0 (64-bit) * using session charset: UTF-8 * checking extension ty...
2007 Jul 27
6
polycom custom ring tones (slightly OT)
...s anyone made up custom ring tones for the Polycom SIP phones? We use different rings for different lines, but the ones it comes with are all very similar. In the interesting of sharing, here's one I made up for paging: <PAGE_BEEP se.pat.ringer.13.name="Page Beep" se.pat.ringer.13.inst.1.type="chord" se.pat.ringer.13.inst.1.value="12" se.pat.ringer.13.inst.1.param="200" se.pat.ringer.13.inst.2.type="chord" se.pat.ringer.13.inst.2.value="15" se.pat.ringer.13.inst.2.param="600" se.pat.ringer.13.inst.3.type="branch&quo...
2016 Oct 07
1
unzip does not like a / at the end of path.
dir("inst/extdata/") dir("./inst/extdata/") dir("inst/extdata") works all fine, listing the directory content. but: unzip(tmp[1],exdir = "inst/extdata/") Error in unzip(tmp[1], exdir = "inst/extdata/") : 'exdir' does not exist unzip(tmp[1],exdir = &quot...
2010 Nov 02
1
inst/ and hidden files/directories, especially inst/.svn/?
In Section 'Package subdirectories' of 'Writing R Extensions', it says about the inst/ directory that: "The contents of the inst subdirectory will be copied recursively to the installation directory (except perhaps hidden files with names starting with ?.?)." Indeed, on Windows with R v2.12.0 patched (2010-11-01 r53513) and R v2.13.0 devel (2010-11-01 r53513), if you hav...
2002 Jun 27
3
Printer Problems (Access Denied)
...ow. Thanks, Mike [global] workgroup = MYDOMAIN netbios name = PRNSVR password level = 30 username level = 30 name resolve order = wins lmhosts host bcast log level = 0 server string = Samba Server hosts allow = (various subnets) load printers = yes printcap name = /inst/lprng/etc/printcap print command = /inst/lprng/bin/lpr -P%p -r %s lpq command = /inst/lprng/bin/lpq -P%p lprm command = /inst/lprng/bin/lprm -P%p %j lppause command = /inst/lprng/sbin/lpc hold %p %j lpresume command = /inst/lprng/sbin/lpc release %p %j queuepause command = /i...
2004 Oct 09
2
inst directory
R CMD check on a Windows system, halts with the following; installing inst files FIND: Parameter format not correct make[2]: *** [C:/AlgDesign/AlgDesign.Rcheck/AlgDesign/inst]Error 2 make[1] *** [all] Error 2 make: *** [pkg-AlgDesign] Error2 *** Installation of AlgDesign failed **** The inst directory contains the sub directory doc with a pdf and dvi file. An...
2013 Jul 21
3
[LLVMdev] Inst field in MSP430InstrFormats.td
Hello, Within the file "MSP430InstrFormats.td" there is a class called "MSP430Inst" which has "Instruction" as superclass. Within this class there is a field called "Inst" (field bits<16> Inst;) which gets assigned in classes which specifies a specific instruction format, e.g. IForm contains:...
2011 Aug 17
4
Referencing 'inst' directory in installed package
Hi, My R package has files in the 'inst' directory that it needs to reference. How can the R scripts in my package find out the full path to the 'inst' directory after the package is installed, given that different users may have installed the package to different libraries? Thanks, Jon Malmaud