Displaying 3 results from an estimated 3 matches for "313262".
Did you mean:
13262
2018 Aug 22
2
[lld] avoid emitting PLT entries for ifuncs
On 22 August 2018 at 04:27, Rui Ueyama via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
>
> However, if you pass the -emit-relocs option to the linker, lld keeps all
> relocations that have already been resolved in an output executable. By
> analyzing a relocation table in a resulting executable, you could find all
> locations where the ifunc PLT is called. Then, you can
2008 Apr 20
1
Scaling in predict.prcomp
Hi,
Say x.train is a matrix of covariates that I want to do PCA on, so I can
do regression on its principal components, and x.test is a test set of
the same covariates on which I want to evaluate the regression fit. I
would like the covariates to be centred and scaled:
p <- prcomp(x.train, center=TRUE, scale=TRUE)
x.train.pc <- predict(p)
Now I want to get the PCs from the test set.
2018 Aug 23
2
[lld] avoid emitting PLT entries for ifuncs
...FreeBSD-kernel-specific post-link step.
>
> [*] dtrace -G basically does this already. See dt_link.c in libdtrace:
> it's 2000 LOC of complicated ELF handling, and it's required numerous
> tweaks over the years to deal with changing behavioural quirks of GNU
> ld and lld. r313262 is an example of this:
> https://svnweb.freebsd.org/changeset/base/313262
> The integration of dtrace(1) into the build systems of projects that
> wish to provide static probes is painful and often creates race
> conditions with incremental rebuilds. Rafael and I discussed this
> se...