search for: mcr

Displaying 20 results from an estimated 50 matches for "mcr".

Did you mean: mcl
2012 Feb 13
0
[PATCH 10/14] arm: implement ARMv7 tlb ops.
...00:00:00 1970 +0000 +++ b/xen/arch/arm/xen/tlb-v7.S Sun Feb 12 12:24:09 2012 +0900 @@ -0,0 +1,51 @@ +#include <xen/config.h> +#include <asm/asm-macros.h> +#include <asm/page.h> + +#define PAGE_SZ 4096 /* PAGE_SIZE @ */ + +ENTRY(cpu_flush_tlb_all) + dsb + mov ip, #0 +#ifndef SMP + mcr p15, 0, ip, c8, c6, 0 @ invalidate Entire I TLB + mcr p15, 0, ip, c8, c5, 0 @ invalidate Entire D TLB +#else + mcr p15, 0, ip, c8, c3, 0 +#endif + mcr p15, 0, ip, c7, c5, 6 @ flush BTAC/BTB (shareable) + dsb + isb + mov pc, lr + +ENTRY(cpu_flush_tlb_entry) + dsb +#ifndef SMP + mcr p15, 0, r0,...
2012 Jun 06
3
extracting values from txt file that follow user-supplied quote
...xed position (i.e. it does not always appears in a predictable location, like line 1000, or 2000, etc.). Rather, the desired values always follow a specific phrase: " PERCENT DISCREPANCY =" One approach I took was the following: library(R.utils) txt_con<-file(description="D:/MCR_BeoPEST - Copy/MCR.out",open="r") #The above will need to be altered if one desires to test code on the attached txt file, which will run much quicker system.time(num_lines<-countLines("D:/MCR_BeoPEST - Copy/MCR.out")) #elapsed time on full 1Gb file took about 55 seconds...
2009 Sep 15
1
Boost in R
Hello, does any one know how to interpret this output in R? > Classification with logitboost > fit <- logitboost(xlearn, ylearn, xtest, presel=50, mfinal=20) > summarize(fit, ytest) Minimal mcr: 0 achieved after 6 boosting step(s) Fixed mcr: 0 achieved after 20 boosting step(s) What is "mcr" mean? Thanks [[alternative HTML version deleted]]
2007 Nov 28
0
[PATCH] [QEMU-DM] Modem control line & msl/mcr register support
...ot;artifacts" in this patch due to me finishing it after I''d also added 16550 emulation ( that patch is coming Really Soon Now - i still have something strange occurring at 115200 baud when backed by a physical serial port that i want to look into) and then separating the finished msl/mcr patch out afterwards. Some of the changes in serial_update_irq only make sense in context of that. Nothing harmful, though, and the 16550 patch will hopefully be ready to post very shortly. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http:...
2007 Mar 19
1
Re: World Of Warcraft and Wine... A success story
MCR <mcr.mameSFILT@gmail.com> wrote in news:cYovh.4006$h15.379@newsfe29.ams: > Toby Newman wrote: >> On 2007-01-29, MCR <mcr.mameSFILT@gmail.com> wrote: >>> I thought I would share a success story with everyone that >>> seemed really >>> complicated,...
2006 Sep 18
4
[LLVMdev] how to declare that two registers must be different
...m counter, R15 should not be used. Rh, Rl and Rm should be different." which allows Rs to be the same as one of the other three. Then, for the load and store multiple instructions, LDM and STM, the R15 should not be used as the base register. Neither should R15 be the destination for an MCR, Move to Co-processor register from Register. These are some examples, hopefully enough to alter the regalloc interface to cope. Cheers, Ralph.
2006 Sep 18
0
[LLVMdev] how to declare that two registers must be different
...quot;Operand restriction" on MUL: Specifying the same register for <Rd> and <Rm> has UNPEDICTABLE results. > Then, for the load and store multiple instructions, LDM and STM, the R15 > should not be used as the base register. Neither should R15 be the > destination for an MCR, Move to Co-processor register from Register. > > These are some examples, hopefully enough to alter the regalloc > interface to cope. Restrictions of the form cannot be register Rx can be solved by creating a register class without Rx. The problem is the "must not be the same"...
2012 Feb 13
0
[PATCH 05/14] arm: implement exception and hypercall entries.
...r1, [r10, #(OFFSET_ARCH_VCPU_INFO + OFFSET_TLR)] + str r3, [r10, #(OFFSET_ARCH_VCPU_INFO + OFFSET_TSPSR)] + + cmp r5, #PSR_MODE_SVC + ldrne r0, [r8, #8] + + mov r5, #PSR_MODE_SVC + str r5, [r8, #4] + str r0, [r8, #8] + str r2, [r8, #12] + + ldr r5, =DACR_STAT_SVC + mcr p15, 0, r5, c3, c0, 0 + + cpsid i + + add r8, r8, #8 + ldmia r8, {r13, r14}^ + ldmia sp, {r0-r12} + ldr sp, [sp, #CTXT_SSP] + msr spsr, #PSR_MODE_USR + movs pc, lr + + .align 5 +vector_pabt: + str r0, [sp, #-16] + str lr, [sp, #-12] + mrs r0, spsr + str r0, [s...
2006 Nov 19
4
The most common row in a matrix?
Hi, How do you get the most common row from a matrix? If I have a matrix like this array(1:3,dim=c(4,5)) [,1] [,2] [,3] [,4] [,5] [1,] 1 2 3 1 2 [2,] 2 3 1 2 3 [3,] 3 1 2 3 1 [4,] 1 2 3 1 2 in which rows 1 and 4 are similar, I want to find that vector c (1,2,3,1,2). Atte Tenkanen University of Turku, Finland
2009 Jul 17
1
get a vector with filenames with a certain extension in a folder
Hi I got a script that works on file with the extension ".qed" that are al located in a folder '~/works/' Is there are R function that will fetch all the filenames from the works subdir, similar to 'ls ~/works/*.qed' Thanks in advance
2007 Mar 19
1
World of Warcraft problem with Wine 0.9.31
...yone know if this is a known issue with the latest wine or do I report it somewhere? If it's a known issue I will patiently wait for another update and boot into everyone's hated OS in the interim for my WoW fix. What I am asking here is basically is anyone else having this issue? -- MCR MAME - History In The Making Ubuntu - Linux for human beings - www.ubuntu.com
2012 Jan 04
1
GPFS for mail-storage (Was: Re: Compressing existing maildirs)
...eans this node can be selected as filesystem manager # echo hostname2:manager-quorum >> NodeFile # "quorum" means this node has a vote in the quorum selection # echo hostname3:manager-quorum >> NodeFile # all my nodes are usually the same, so they all have same roles. # mmcrcluster -n NodeFile -p $(hostname) -A ### sdb1 is either a local disk on hostname1 (in which case the other nodes will access it over tcp to ### hostname1), or a SAN-disk that they can access directly over FC/iSCSI. # echo sdb1:hostname1::dataAndMetadata:: > DescFile # This disk can be...
2000 Aug 13
2
Possible bug (PR#633)
2016 May 17
3
llvm-toolchain-3.8 on lower arm targets, specifically Debian armel and Raspbian.
llvm-toolchain-3.8 seems to have problems on debian armel and raspbian. On raspbian it builds but our armv7 contamination checker blocked it from entering the repo. Further investigation showed that "compiler-rt" was being built with -march=armv7 . I was able to remove the -march with some build-system hacker but then I got a failure on
2013 Jul 09
1
[PATCH V3] xen: arm: introduce Cortex-A7 support
...blic License for more details. - */ - -#include <asm/asm_defns.h> -#include <asm/processor-ca15.h> - -.globl cortex_a15_init -cortex_a15_init: - /* Set up the SMP bit in ACTLR */ - mrc CP32(r0, ACTLR) - orr r0, r0, #(ACTLR_CA15_SMP) /* enable SMP bit */ - mcr CP32(r0, ACTLR) - mov pc, lr - -/* - * Local variables: - * mode: ASM - * indent-tabs-mode: nil - * End: - */ diff --git a/xen/arch/arm/arm32/proc-v7.S b/xen/arch/arm/arm32/proc-v7.S new file mode 100644 index 0000000..0ab3845 --- /dev/null +++ b/xen/arch/arm/arm32/proc-v7.S @@ -0,0 +1,5...
2013 Jul 16
0
[PATCH] xen: extract register definitions from ns16550 into a separated header
...THR 0x00 /* transmit holding */ -#define IER 0x01 /* interrupt enable */ -#define IIR 0x02 /* interrupt identity */ -#define FCR 0x02 /* FIFO control */ -#define LCR 0x03 /* line control */ -#define MCR 0x04 /* Modem control */ -#define LSR 0x05 /* line status */ -#define MSR 0x06 /* Modem status */ -#define DLL 0x00 /* divisor latch (ls) (DLAB=1) */ -#define DLM 0x01 /* divisor latch (ms) (DLAB=1) *...
2008 Jun 17
6
x_send_file sends a 1 byte file
Hello, sorry if creating a dupe... I''m trying to download files to authenticated users in my app. I''ve set up x_send_file. All seems to be correct to me, however when I try to download any file, I get a 1-byte long file downloaded. I am getting this already in development - so no Apache, no lighthttpd, just a mongrel_rails start in the root of my app. Any help/hint would be
2012 Jan 09
2
create table in mysql using asterisk
Hi, I try to create a new table using MYSQL command in asterisk. This is what i write: Query resultid ${connid} CREATE TABLE IF NOT EXISTS "conference_600" ("id" int(11) NOT NULL auto_increment, "channel_id" varchar(40), "number_in_line" int(2), PRIMARY KEY("id")") and this is the warning that i get in the cli: app_addon_sql_mysql.c:383
2013 Oct 16
3
[PATCH] xen/arm: Add CPU ID for Broadcom Brahma-B15
From: Marc Carino <marc.ceeeee@gmail.com> Let Xen recognize the Broadcom Brahma-B15 CPU by adding the appropriate MIDR mask to the initialization phase. Further, ensure that the console output properly reports the CPU manufacturer as "Broadcom Corporation". Signed-off-by: Marc Carino <marc.ceeeee@gmail.com> --- xen/arch/arm/arm32/proc-v7.S | 8 ++++++++
2016 May 17
2
llvm-toolchain-3.8 on lower arm targets, specifically Debian armel and Raspbian.
On 17/05/16 18:07, Tim Northover wrote: > Yes, it looks like we'd need to conditionally compile these functions > in ARM mode and use the v6 barrier instead of dmb ("mcr p15, #0, r0, > c7, c10, #5" I believe) to support the ARM1176JZF-S in RPi. You'd > probably also want the build system to use an explicit -march=armv6 or > something so you're not at the mercy of how the host compiler was > configured. > > I suspect you're the fir...