Displaying 9 results from an estimated 9 matches for "schedgraph".
2005 Apr 02
2
[LLVMdev] newbie question - selecting the write kind of pass
I want to create a simple map from a Value to the instruction that
defines it. Such a map is present inside SchedGraph, but I need it in
a much simpler context.
If I got it right, I create a new AnalysisGroup, and write a pass that
implements it. What kind of pass should I derive it from? The mapping
only makes sense within a function, so FunctionPass seems to be the
right choice ... is that correct?
The document...
2005 Apr 02
0
[LLVMdev] newbie question - selecting the write kind of pass
On Sat, 2 Apr 2005, Sameer D. Sahasrabuddhe wrote:
> I want to create a simple map from a Value to the instruction that
> defines it. Such a map is present inside SchedGraph, but I need it in
> a much simpler context.
Is this in the context of the code generator?
> If I got it right, I create a new AnalysisGroup, and write a pass that
> implements it. What kind of pass should I derive it from? The mapping
> only makes sense within a function, so FunctionP...
2004 Sep 23
2
[LLVMdev] struct and class under VC7.1
...crazy testing out different options...
At the end, unmangling the differences in what linker was searching and
what was present in the libraries, I found that the problem is
that we have something like this...
Value.h
struct Value {
bla bla bla
}
and around in the other files:
SlotCalculator.h
SchedGraph.h
<big snip>
class Value;
The linker complains about the different parameters types, and raise an
unresolved external symbol.
I can resolve the iussue
a) turning the original struct Value { ... } in class Value { public:
.... }
b) turning all the class Value; into struct Value;
The same...
2007 Oct 17
4
RELENG_7 jerky mouse and skipping sound
I just updated to RELENG_7 from 6.2 and I'm running into some really
annoying issues with jerky mouse movement and skipping sound. This
seems to be similar to:
Re: SCHED_4BSD in RELENG_7 disturbs workflow
This happens both with 4BSD and ULE.
I seems to happen when I'm compiling ports and a new cc/bzip2/sh
process fires off (I'm just watching top), I'll get the
skip/freezeup.
2005 Apr 03
2
[LLVMdev] newbie question - selecting the write kind of pass
On Sat, Apr 02, 2005 at 11:35:30AM -0600, Chris Lattner wrote:
> On Sat, 2 Apr 2005, Sameer D. Sahasrabuddhe wrote:
> > I want to create a simple map from a Value to the instruction that
> > defines it. Such a map is present inside SchedGraph, but I need it in
> > a much simpler context.
>
> Is this in the context of the code generator?
No ... I am just trying to feel the waters ... simply trying to create
a "data flow graph" from the SSA form. I meant "context" in a very
loose, plain-English way.
>...
2005 Apr 22
0
[LLVMdev] tabs
...llvm/Analysis/Verifier.h
Index: include/llvm/Assembly/Parser.h
Index: include/llvm/Assembly/Writer.h
Index: include/llvm/Bytecode/Reader.h
Index: include/llvm/CodeGen/LiveVariables.h
Index: include/llvm/CodeGen/MachineFunction.h
Index: include/llvm/CodeGen/MachineInstr.h
Index: include/llvm/CodeGen/SchedGraphCommon.h
Index: include/llvm/Config/alloca.h
Index: include/llvm/Support/Annotation.h
Index: include/llvm/Target/MRegisterInfo.h
Index: include/llvm/Target/TargetFrameInfo.h
Index: include/llvm/Target/TargetInstrInfo.h
Index: include/llvm/Target/TargetSchedInfo.h
Index: lib/Analysis/Expressions.cpp...
2004 Sep 23
0
[LLVMdev] struct and class under VC7.1
...angling the differences in what linker was searching and
> what was present in the libraries, I found that the problem is
> that we have something like this...
>
> Value.h
> struct Value {
> bla bla bla
> }
>
> and around in the other files:
> SlotCalculator.h
> SchedGraph.h
> <big snip>
>
> class Value;
>
> The linker complains about the different parameters types, and raise an
> unresolved external symbol.
>
> I can resolve the iussue
> a) turning the original struct Value { ... } in class Value { public:
> .... }
> b) tu...
2005 Feb 24
1
[LLVMdev] Uniform data dependence info?
> What specific information do you need?
All my experiments eventually analyze or transform
the data dependence graph, which takes into account both
registers and aliasing information. Because there is already
a built-in support for graphs, I hoped there is also built-in
support for data dependence graphs. That would allow, for example,
to display them naturally with dot utility.
2005 Apr 03
0
[LLVMdev] newbie question - selecting the write kind of pass
...Sameer D. Sahasrabuddhe wrote:
> On Sat, Apr 02, 2005 at 11:35:30AM -0600, Chris Lattner wrote:
>
>> On Sat, 2 Apr 2005, Sameer D. Sahasrabuddhe wrote:
>>> I want to create a simple map from a Value to the instruction that
>>> defines it. Such a map is present inside SchedGraph, but I need it in
>>> a much simpler context.
>>
>> Is this in the context of the code generator?
>
> No ... I am just trying to feel the waters ... simply trying to create
> a "data flow graph" from the SSA form. I meant "context" in a very
> lo...