forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generalize the EXPORTED_SYMBOL_FILE concept in the Makefiles to work …
…with native linking export files, including running sed to prepend underscores on darwin, and make use of it in libLTO and libEnhancedDisassembly. Remove the leading underscores from library export files so that they work with the new EXPORTED_SYMBOL_FILE support. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101399 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Dan Gohman
committed
Apr 15, 2010
1 parent
f27733f
commit b16b53b
Showing
5 changed files
with
98 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
_EDGetDisassembler | ||
_EDGetRegisterName | ||
_EDRegisterIsStackPointer | ||
_EDRegisterIsProgramCounter | ||
_EDCreateInsts | ||
_EDReleaseInst | ||
_EDInstByteSize | ||
_EDGetInstString | ||
_EDInstIsBranch | ||
_EDInstIsMove | ||
_EDBranchTargetID | ||
_EDMoveSourceID | ||
_EDMoveTargetID | ||
_EDNumTokens | ||
_EDGetToken | ||
_EDGetTokenString | ||
_EDOperandIndexForToken | ||
_EDTokenIsWhitespace | ||
_EDTokenIsPunctuation | ||
_EDTokenIsOpcode | ||
_EDTokenIsLiteral | ||
_EDTokenIsRegister | ||
_EDTokenIsNegativeLiteral | ||
_EDLiteralTokenAbsoluteValue | ||
_EDRegisterTokenValue | ||
_EDNumOperands | ||
_EDGetOperand | ||
_EDOperandIsRegister | ||
_EDOperandIsImmediate | ||
_EDOperandIsMemory | ||
_EDRegisterOperandValue | ||
_EDImmediateOperandValue | ||
_EDEvaluateOperand | ||
_EDBlockCreateInsts | ||
_EDBlockEvaluateOperand | ||
_EDBlockVisitTokens | ||
EDGetDisassembler | ||
EDGetRegisterName | ||
EDRegisterIsStackPointer | ||
EDRegisterIsProgramCounter | ||
EDCreateInsts | ||
EDReleaseInst | ||
EDInstByteSize | ||
EDGetInstString | ||
EDInstIsBranch | ||
EDInstIsMove | ||
EDBranchTargetID | ||
EDMoveSourceID | ||
EDMoveTargetID | ||
EDNumTokens | ||
EDGetToken | ||
EDGetTokenString | ||
EDOperandIndexForToken | ||
EDTokenIsWhitespace | ||
EDTokenIsPunctuation | ||
EDTokenIsOpcode | ||
EDTokenIsLiteral | ||
EDTokenIsRegister | ||
EDTokenIsNegativeLiteral | ||
EDLiteralTokenAbsoluteValue | ||
EDRegisterTokenValue | ||
EDNumOperands | ||
EDGetOperand | ||
EDOperandIsRegister | ||
EDOperandIsImmediate | ||
EDOperandIsMemory | ||
EDRegisterOperandValue | ||
EDImmediateOperandValue | ||
EDEvaluateOperand | ||
EDBlockCreateInsts | ||
EDBlockEvaluateOperand | ||
EDBlockVisitTokens |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,23 @@ | ||
_lto_get_error_message | ||
_lto_get_version | ||
_lto_module_create | ||
_lto_module_create_from_memory | ||
_lto_module_get_num_symbols | ||
_lto_module_get_symbol_attribute | ||
_lto_module_get_symbol_name | ||
_lto_module_get_target_triple | ||
_lto_module_is_object_file | ||
_lto_module_is_object_file_for_target | ||
_lto_module_is_object_file_in_memory | ||
_lto_module_is_object_file_in_memory_for_target | ||
_lto_module_dispose | ||
_lto_codegen_add_module | ||
_lto_codegen_add_must_preserve_symbol | ||
_lto_codegen_compile | ||
_lto_codegen_create | ||
_lto_codegen_dispose | ||
_lto_codegen_set_debug_model | ||
_lto_codegen_set_pic_model | ||
_lto_codegen_write_merged_modules | ||
_lto_codegen_debug_options | ||
_lto_codegen_set_assembler_path | ||
|
||
lto_get_error_message | ||
lto_get_version | ||
lto_module_create | ||
lto_module_create_from_memory | ||
lto_module_get_num_symbols | ||
lto_module_get_symbol_attribute | ||
lto_module_get_symbol_name | ||
lto_module_get_target_triple | ||
lto_module_is_object_file | ||
lto_module_is_object_file_for_target | ||
lto_module_is_object_file_in_memory | ||
lto_module_is_object_file_in_memory_for_target | ||
lto_module_dispose | ||
lto_codegen_add_module | ||
lto_codegen_add_must_preserve_symbol | ||
lto_codegen_compile | ||
lto_codegen_create | ||
lto_codegen_dispose | ||
lto_codegen_set_debug_model | ||
lto_codegen_set_pic_model | ||
lto_codegen_write_merged_modules | ||
lto_codegen_debug_options | ||
lto_codegen_set_assembler_path |