search for: buildinterferencematrix

Displaying 1 result from an estimated 1 matches for "buildinterferencematrix".

2010 May 08
0
[LLVMdev] Regarding LLVM Compiler
Hi Kameshwar, You're best off sending emails such as this to the LLVM developers mailing list (llvmdev at cs.uiuc.edu). You'll reach a much wider audience. The PBQPRegAlloc::buildInterferenceMatrix method constructs a PBQP cost matrix representing a single interference constraint, which doesn't sound like what you want. It is only used by the PBQP allocator (-regalloc=pbqp), whereas LLVM uses linear scan by default (-regalloc=linscan). That's why you're not seeing it called. LLVM...