search for: isglobal

Displaying 6 results from an estimated 6 matches for "isglobal".

2019 Dec 15
0
christmas package
...;-) > xmas2019regression() Have a nice 2020! Jose Barrera Statistician, Associate Lecturer *IS**Global* Barcelona Institute for Global Health - Campus MAR Barcelona Biomedical Research Park (PRBB) (Room Hypatia) Doctor Aiguader, 88 08003 Barcelona, Spain Tel. +34 93 2147383 jose.barrera at isglobal.org <https://www.linkedin.com/in/josebarrera> Personal website: sites.google.com/view/josebarrera www.isglobal.org This message is intended exclusively for its addressee and may contain information that is CONFIDENTIAL and protected by professional privilege. If you are not the intended reci...
2019 Dec 15
0
christmas package
...;-) > xmas2019regression() Have a nice 2020! Jose Barrera Statistician, Associate Lecturer *IS**Global* Barcelona Institute for Global Health - Campus MAR Barcelona Biomedical Research Park (PRBB) (Room Hypatia) Doctor Aiguader, 88 08003 Barcelona, Spain Tel. +34 93 2147383 jose.barrera at isglobal.org <https://www.linkedin.com/in/josebarrera> Personal website: sites.google.com/view/josebarrera www.isglobal.org This message is intended exclusively for its addressee and may contain information that is CONFIDENTIAL and protected by professional privilege. If you are not the intended reci...
2016 Jun 20
2
[GSoC 2016] [Weekly Status] Interprocedural Register Allocation
...auto UpdateRegMask = [&](const Function *F) { const auto *RegMask = PRUI->getRegUsageInfo(F); if (!RegMask) return; setRegMask(MI, &(*RegMask)[0]); Changed = true; }; MachineOperand &Operand = MI.getOperand(0); if (Operand.isGlobal()) UpdateRegMask(cast<Function>(Operand.getGlobal())); else if (Operand.isSymbol()) UpdateRegMask(M->getFunction(Operand.getSymbolName())); else if(Operand.isReg()){ // changes starts here unsigned VReg = Operand.getReg(); MachineBasicBlock::iter...
2016 Jan 25
2
SF_Exported vs SF_Hidden
...about this. What are the valid values for visibility? If's only "hidden" and "default" then we should just need one flag for that. If SF_Exported is capturing a derived value, maybe we should just make it a function on the symbol. E.g.: bool Symbol::isExported() { return isGlobal() && !isHidden(); } Alternatively I've misunderstood the full meaning of SF_Hidden and SF_Exported. I always just read them as "will this symbol appear in the symbol table for a linked DSO". Under that reading, a non-hidden, non-exported symbol doesn't make sense. >...
2016 Jan 24
2
SF_Exported vs SF_Hidden
Hi Rui, Rafael, Kevin, Nick, In r258665 I added a line to set the SF_Exported flag in COFFObjectFile - the JIT needs this flag to distinguish exported symbols from non-exported ones. In the process of trying to write a test case for that, a couple of questions came up: (1) Previously COFF wasn't setting either SF_Exported or SF_Hidden. What is the linker using to build the export table for
2016 Jun 19
2
[GSoC 2016] [Weekly Status] Interprocedural Register Allocation
Dear Community, Please find summary of work done during this week as follow: Implementation: ============ During this week we have identified a bug in IPRA due to not considering RegMask of function calls in given machine function. The same bug on AArch64 has been reported by Chad Rosier and more detailed description can be found at https://llvm.org/bugs/show_bug.cgi?id=28144 . To fix this bug