search for: temp_mdnode

Displaying 2 results from an estimated 2 matches for "temp_mdnode".

2011 Oct 17
2
[LLVMdev] Variable name from metadata
Hi All,   Can we extract name of variable name from "MDNode" ?   1. Neither temp_MDNode->getName() nor temp_MDNode->getValueName() give me "global_int" which is name of a variable.   2. I tried below ways as well. DIVariable DV(mdnode1); Value *v = mdnode1->getOperand(0);//gives add 0x69   3. I have written below code to reach till variable name.        LLVMIname i...
2011 Oct 17
0
[LLVMdev] Variable name from metadata
...__________________________ From: Pankaj Gode <godepankaj at yahoo.com> To: llvm Developers <llvmdev at cs.uiuc.edu> Sent: Monday, October 17, 2011 5:38 PM Subject: [LLVMdev] Variable name from metadata Hi All, Can we extract name of variable name from "MDNode" ? 1. Neither temp_MDNode->getName() nor temp_MDNode->getValueName() give me "global_int" which is name of a variable. 2. I tried below ways as well. DIVariable DV(mdnode1); Value *v = mdnode1->getOperand(0);//gives add 0x69 3. I have written below code to reach till variable name.      LLVMIname is...