Displaying 2 results from an estimated 2 matches for "llvm_bin".
Did you mean:
llvm_bb
2012 Dec 27
1
[LLVMdev] Throwing an exception from JITed code, and catching in C++
...s compiled using g++.
When I run catcher it just prints this:
terminate called after throwing an instance of 'int'
I am using LLVM and CLANG 3.0, and gcc 4.7.2.
Here are all of the files needed to reproduce this:
1) thrower.cpp
2) catcher.cpp
3) Makefile
This is how I run the test:
make LLVM_BIN=path/to/llvm-3.0.src/Release/bin/
$ cat thrower.cpp ################
void throwInt()
{
throw 1;
}
$ cat thrower.s ################
; ModuleID = 'thrower.cpp'
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a...
2013 Mar 11
2
[LLVMdev] LNT usage
...ers using lnt ? What is the
workflow for comparing a patched lllvm to the baseline version ?
I am mainly interested in the tests' execution time.
1. I am bit confused by the 'lnt runtest' output:
$LNT_TOP/sandbox/bin/lnt runtest nt \
> --sandbox=$LNT_TOP/SANDBOX3 \
> --cc=$LLVM_BIN/clang \
> --cxx=$LLVM_BIN/clang++ \
> --test-suite=$LLVM_SRCS/projects/test-suite \
> --llvm-src=$LLVM_SRCS \
> --llvm-obj=$LLVM_BUILD
2013-03-11 18:41:22: checking source versions
2013-03-11 18:41:25: scanning for LNT-based test modules
2013-03-11 18:41:25: found 0 LNT-based te...