| Commit message (Expand) | Author | Age | Files | Lines |
* | Factor out metadata parsing into a separate function. | Dan Gohman | 2010-07-14 | 1 | -0/+1 |
* | fix a crash on invalid metadata, e.g.: call i32 @foo(), XXXX | Chris Lattner | 2010-04-07 | 1 | -1/+1 |
* | include header. | Chris Lattner | 2010-04-01 | 1 | -0/+1 |
* | rewrite handling of forward ref'd instruction metadata | Chris Lattner | 2010-04-01 | 1 | -0/+9 |
* | eliminate a temporary smallvector | Chris Lattner | 2010-04-01 | 1 | -2/+1 |
* | Add support for a union type in LLVM IR. Patch by Talin! | Chris Lattner | 2010-02-12 | 1 | -0/+4 |
* | Add a new function attribute, 'alignstack'. It will indicate (when the backends | Charles Davis | 2010-02-12 | 1 | -0/+1 |
* | Remove MetadataBase class because it is not adding significant value. | Devang Patel | 2010-01-22 | 1 | -1/+0 |
* | Consolidate ConvertGlobalValIDToValue, ConvertGlobalOrMetadataValIDToValue, a... | Victor Hernandez | 2010-01-11 | 1 | -4/+1 |
* | Compute isFunctionLocal in MDNode ctor or via argument in new function getWhe... | Victor Hernandez | 2010-01-10 | 1 | -4/+2 |
* | When parsing function-local metadata, create a function-local MDNode | Victor Hernandez | 2010-01-06 | 1 | -2/+4 |
* | Re-add parsing of function-local metadata; this time with testcase. | Victor Hernandez | 2010-01-05 | 1 | -11/+10 |
* | now that instruction metadata is only parsed in one place, eliminate the | Chris Lattner | 2009-12-30 | 1 | -2/+2 |
* | reimplement ParseOptionalInfo as ParseOptionalCommaAlign, correctly | Chris Lattner | 2009-12-30 | 1 | -4/+4 |
* | rename ParseOptionalCustomMetadata -> ParseInstructionMetadata, | Chris Lattner | 2009-12-30 | 1 | -1/+1 |
* | convert 4 more instructions over. | Chris Lattner | 2009-12-30 | 1 | -4/+4 |
* | add facilities to start factoring instruction metadata parsing | Chris Lattner | 2009-12-30 | 1 | -4/+6 |
* | reimplement insertvalue/extractvalue metadata handling to not blindly | Chris Lattner | 2009-12-30 | 1 | -1/+8 |
* | rename MetadataCache -> NumberedMetadata to follow the convention | Chris Lattner | 2009-12-30 | 1 | -2/+1 |
* | rewrite ParseMDNodeVector to follow the normal patter used in the .ll parser. | Chris Lattner | 2009-12-30 | 1 | -0/+2 |
* | rename ParseMDNode -> ParseMDNodeID, since it parses !42, not !{... } as you'... | Chris Lattner | 2009-12-30 | 1 | -1/+1 |
* | remove the code added in r90497. It has several major issues and no tests. | Chris Lattner | 2009-12-30 | 1 | -2/+0 |
* | split t_Metadata into t_MDNode and t_MDString, eliminating some unsafe casting. | Chris Lattner | 2009-12-30 | 1 | -2/+4 |
* | change ParseMDString and ParseMDNode to take arguments of the right type. | Chris Lattner | 2009-12-29 | 1 | -2/+2 |
* | switch to TrackingVH instead of WeakVH, since these can never | Chris Lattner | 2009-12-29 | 1 | -3/+3 |
* | Metadata.h doesn't need to include ValueHandle.h anymore. | Chris Lattner | 2009-12-28 | 1 | -0/+1 |
* | Add ParseInlineMetadata() which can parses metadata that refers to an instruc... | Victor Hernandez | 2009-12-03 | 1 | -1/+3 |
* | Use WeakVH while storing metadata in containers. | Devang Patel | 2009-11-05 | 1 | -2/+2 |
* | full asmparser support for blockaddress. We can now do: | Chris Lattner | 2009-10-28 | 1 | -4/+51 |
* | rename indbr -> indirectbr to appease the residents of #llvm. | Chris Lattner | 2009-10-28 | 1 | -1/+1 |
* | add enough support for indirect branch for the feature test to pass | Chris Lattner | 2009-10-27 | 1 | -1/+8 |
* | Auto-upgrade free instructions to calls to the builtin free function. | Victor Hernandez | 2009-10-24 | 1 | -1/+1 |
* | Autoupgrade malloc insts to malloc calls. | Victor Hernandez | 2009-10-17 | 1 | -2/+5 |
* | Parse custom metadata attached with an instruction. | Devang Patel | 2009-09-29 | 1 | -1/+1 |
* | Do not use global typedef for MDKindID. | Devang Patel | 2009-09-28 | 1 | -1/+1 |
* | Revert 82694 "Auto-upgrade malloc instructions to malloc calls." because it c... | Victor Hernandez | 2009-09-25 | 1 | -5/+2 |
* | Auto-upgrade malloc instructions to malloc calls. | Victor Hernandez | 2009-09-24 | 1 | -2/+5 |
* | Fix parsing of optional metadata for 'load', 'store' and 'alloc' instructions. | Devang Patel | 2009-09-17 | 1 | -2/+3 |
* | Retype from unsigned to CallingConv::ID accordingly. Approved by Bob Wilson. | Sandeep Patel | 2009-09-02 | 1 | -1/+1 |
* | Extend the AsmWriter to print unnamed numbered types as "%0 = type ..." | Dan Gohman | 2009-08-12 | 1 | -0/+1 |
* | Parse named metadata. | Devang Patel | 2009-07-29 | 1 | -0/+1 |
* | Derive MDNode from MetadataBase instead of Constant. Emit MDNodes into METADA... | Devang Patel | 2009-07-23 | 1 | -3/+3 |
* | Introduce MetadataBase, a base class for MDString and MDNode. | Devang Patel | 2009-07-22 | 1 | -1/+2 |
* | Refactor metadata parsing routines into separate functions. | Devang Patel | 2009-07-20 | 1 | -0/+2 |
* | Support MDNode forward reference. | Devang Patel | 2009-07-08 | 1 | -0/+2 |
* | Use LLVMContext in the LLLexer. | Owen Anderson | 2009-07-07 | 1 | -1/+1 |
* | switch the .ll parser to use SourceMgr. | Chris Lattner | 2009-07-02 | 1 | -2/+2 |
* | switch the .ll parser into SMDiagnostic. | Chris Lattner | 2009-07-02 | 1 | -1/+1 |
* | Use LLVMContext for generating UndefValue constants too! | Owen Anderson | 2009-07-02 | 1 | -0/+2 |
* | Try again at converting the LLParser to use LLVMContext, without massive brea... | Owen Anderson | 2009-07-01 | 1 | -2/+4 |