llvm-6502/test/Object/yaml2obj-elf-symbol-basic.yaml
Sean Silva 4235ba32f2 [yaml2obj][ELF] Don't explicitly set Binding with STB_*
Instead, just have 3 sub-lists, one for each of
{STB_LOCAL,STB_GLOBAL,STB_WEAK}.

This allows us to be a lot more explicit w.r.t. the symbol ordering in
the object file, because if we allowed explicitly setting the STB_*
`Binding` key for the symbol, then we might have ended up having to
shuffle STB_LOCAL symbols to the front of the list, which is likely to
cause confusion and potential for error.

Also, this new approach is simpler ;)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184506 91177308-0d34-0410-b5e6-96231b3b80d8
2013-06-21 00:27:50 +00:00

44 lines
1.3 KiB
YAML

# RUN: yaml2obj -format=elf %s | llvm-readobj -symbols - | FileCheck %s
# RUN: yaml2obj -format=elf %s | llvm-objdump -d -no-show-raw-insn - | FileCheck %s --check-prefix=DISASSEMBLY
!ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_REL
Machine: EM_X86_64
Sections:
- Name: .text
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
Content: "90EBFE" # x86 machine code
# NOP ; To make main's `Value` non-zero (for testing).
# main:
# JMP -2 ; (infloop)
# This YAML file is a valid relocatable object that,
# when linked and run on x86_64, will go into an
# infloop.
- Name: .symtab
Type: SHT_SYMTAB
Symbols:
Global:
- Name: main
Type: STT_FUNC
Section: .text
Value: 0x1
Size: 2
# CHECK: Symbols [
# CHECK-NEXT: Symbol {
# CHECK-NEXT: Name: (0)
# CHECK: Symbol {
# CHECK-NEXT: Name: main
# CHECK-NEXT: Value: 0x1
# CHECK-NEXT: Size: 2
# CHECK: Binding: Global
# CHECK-NEXT: Type: Function
# CHECK: Section: .text
# DISASSEMBLY: Disassembly of section .text:
# DISASSEMBLY-NEXT: main:
# DISASSEMBLY-NEXT: 1: jmp -2