Displaying 5 results from an estimated 5 matches for "currentschedul".
Did you mean:
currentschedule
2017 Mar 31
0
Wine release 2.5
...rocessors implementation.
msvcrt: Add ThreadScheduler::Release implementation.
msvcrt: Add ThreadScheduler::RegisterShutdownEvent implementation.
msvcrt: Add improper_scheduler_attach class implementation.
msvcrt: Add ThreadScheduler::Attach implementation.
msvcrt: Add CurrentScheduler class stub.
msvcrt: Add CurrentScheduler::Create implementation.
msvcrt: Add Scheduler::SetDefaultSchedulerPolicy implementation.
msvcrt: Add CurrentScheduler::Get implementation.
msvcrt: Add improper_scheduler_detach class implementation.
msvcrt: Attach context to d...
2017 Apr 13
0
Wine release 2.6
...s during installation
30684 Mono: GroupBox draws border line after text
38213 Japanese vertical text incorrected
39856 Regedit: Default registry key is not the same as on Windows
40508 The Witness: black screen on start (32-bit version)
40628 Multiple games need msvcr110.dll.?_Id at _CurrentScheduler@details at Concurrency@@SAIXZ (World of Tanks v0.9.15, Bethesda.net Launcher, Train Fever)
40786 Legacy of kain Defiance to crashes when called by script
41403 Ri-li 2.0.1: No window content shown (just title bar)
41774 Rogue operatives - only white screen in game with HUD
41995 Never...
2006 May 31
0
[LLVMdev] Adding an object to llc (analysis pass)
On Wed, 31 May 2006, Silken Tiger wrote:
>> that requires a BasicBlockPass, it will fail the same was as when a
>> ModulePass requires a FunctionPass.
> void MParSchedule::getAnalysisUsage(AnalysisUsage &AU) const {
> AU.setPreservesAll();
> }
>
> MParSchedule requires nothing and changes nothing. So hopefully the above code
> represents this fact?
Right
2006 Jun 01
2
[LLVMdev] Adding an object to llc (analysis pass)
....setPreservesAll();
}
and then in the runOnFunction pass of this backend:
LI = &getAnalysis<LoopInfo>();
MParSchedule &MPar = getAnalysis<MParSchedule>();
lowerIntrinsics(F);
printFloatingPointConstants(F);
F.renameLocalSymbols();
list<Schedule *>* ScheduleList;
Schedule *currentSchedule;
for (Function::iterator i = F.begin(), e = F.end(); i != e; ++i) {
for(BasicBlock::iterator j=i->begin(),bbe=i->end();j!=bbe;++j) {
BasicBlock *bb;
if((bb=dyn_cast<BasicBlock>(j))) {
ScheduleList=MPar.lookupBasicBlock(bb);
if(Schedu...
2006 May 31
2
[LLVMdev] Adding an object to llc (analysis pass)
Hi
Am Dienstag, 30. Mai 2006 19:21 schrieb Chris Lattner:
> On Tue, 30 May 2006, Silken Tiger wrote:
> > Everthing now compiles fine, but when running llc with invoking my own
> > backend derived from the cbackend i get the following error:
> > namespace llvm {
> > class MParSchedule : public BasicBlockPass {
> > public:
> >
> >