Skip to content

Commit

Permalink
Merge branch 'rlyerly' into ppc-merge
Browse files Browse the repository at this point in the history
  • Loading branch information
rlyerly committed Aug 26, 2017
2 parents 5988703 + 16ff919 commit 21a5988
Show file tree
Hide file tree
Showing 2,334 changed files with 123,938 additions and 13,588 deletions.
11 changes: 2 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
clean_lib
_config.yml
git.log
install_compiler.py.harubyy
jun.11.1
may.21
README.md
regset_copyin
setup_fbp_powerpc64
tags
*.swp
*.swp
cscope.out
binutils-2.27.tar.bz2
2 changes: 0 additions & 2 deletions README.md

This file was deleted.

1 change: 0 additions & 1 deletion _config.yml

This file was deleted.

5 changes: 3 additions & 2 deletions common/stack_transformation/include/call_site.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ typedef struct __attribute__((__packed__)) live_value {

/* Operation types for generating architecture-specific values. */
enum inst_type {
#define X(inst, pseudo) inst,
#define X(inst) inst,
#include "StackTransformTypes.def"
VALUE_GEN_INST
#undef X
Expand All @@ -111,7 +111,8 @@ typedef struct __attribute__((__packed__)) arch_live_value {
uint32_t offset;

/* Operation/operand */
uint8_t operand_type : 4;
uint8_t operand_type : 3;
uint8_t is_gen : 1;
uint8_t inst_type : 4;
uint8_t operand_size;
uint16_t operand_regnum;
Expand Down
5 changes: 0 additions & 5 deletions common/stack_transformation/include/het_bin.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,5 @@
/* Architecture-specific constant locations & values. */
#define SECTION_ARCH "arch_const"

/* Names of starting functions for the main thread & forked threads. */
// Note: these are specific to musl-libc
#define START_MAIN "__libc_start_main"
#define START_THREAD "start"

#endif /* _HET_BIN_H */

0 comments on commit 21a5988

Please sign in to comment.