summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2014-03-06 00:38:32 +0000
committerEric Christopher <echristo@gmail.com>2014-03-06 00:38:32 +0000
commit028462964bdbfc2ab332de73c5439d547e01776a (patch)
treec2b2eb7b656155bc40ee306bb76994c3ead14b10 /lib
parent025c1cefca00f262452c8c42717a4047b1836cd2 (diff)
downloadllvm-028462964bdbfc2ab332de73c5439d547e01776a.tar.gz
llvm-028462964bdbfc2ab332de73c5439d547e01776a.tar.bz2
llvm-028462964bdbfc2ab332de73c5439d547e01776a.tar.xz
Rewrite the attribute hashing algorithm to use the type of the value
pointed to by the attribute, rather than the form as a first step to determining how to hash the values. No functional change intended. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203044 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/AsmPrinter/DIEHash.cpp68
1 files changed, 36 insertions, 32 deletions
diff --git a/lib/CodeGen/AsmPrinter/DIEHash.cpp b/lib/CodeGen/AsmPrinter/DIEHash.cpp
index dbeb5890b0..bc8c6957b0 100644
--- a/lib/CodeGen/AsmPrinter/DIEHash.cpp
+++ b/lib/CodeGen/AsmPrinter/DIEHash.cpp
@@ -300,42 +300,41 @@ void DIEHash::hashAttribute(AttrEntry Attr, dwarf::Tag Tag) {
// reproducibility of the signature, the set of forms used in the signature
// computation is limited to the following: DW_FORM_sdata, DW_FORM_flag,
// DW_FORM_string, and DW_FORM_block.
- switch (Desc->getForm()) {
- case dwarf::DW_FORM_string:
- llvm_unreachable(
- "Add support for DW_FORM_string if we ever start emitting them again");
- case dwarf::DW_FORM_GNU_str_index:
- case dwarf::DW_FORM_strp:
- addULEB128('A');
- addULEB128(Attribute);
- addULEB128(dwarf::DW_FORM_string);
- addString(cast<DIEString>(Value)->getString());
- break;
- case dwarf::DW_FORM_data1:
- case dwarf::DW_FORM_data2:
- case dwarf::DW_FORM_data4:
- case dwarf::DW_FORM_data8:
- case dwarf::DW_FORM_udata:
- case dwarf::DW_FORM_sdata:
+
+ switch (Value->getType()) {
+ case DIEValue::isInteger: {
addULEB128('A');
addULEB128(Attribute);
- addULEB128(dwarf::DW_FORM_sdata);
- addSLEB128((int64_t)cast<DIEInteger>(Value)->getValue());
+ switch (Desc->getForm()) {
+ case dwarf::DW_FORM_data1:
+ case dwarf::DW_FORM_data2:
+ case dwarf::DW_FORM_data4:
+ case dwarf::DW_FORM_data8:
+ case dwarf::DW_FORM_udata:
+ case dwarf::DW_FORM_sdata:
+ addULEB128(dwarf::DW_FORM_sdata);
+ addSLEB128((int64_t)cast<DIEInteger>(Value)->getValue());
+ break;
+ // DW_FORM_flag_present is just flag with a value of one. We still give it a
+ // value so just use the value.
+ case dwarf::DW_FORM_flag_present:
+ case dwarf::DW_FORM_flag:
+ addULEB128(dwarf::DW_FORM_flag);
+ addULEB128((int64_t)cast<DIEInteger>(Value)->getValue());
+ break;
+ default:
+ llvm_unreachable("Unknown integer form!");
+ }
break;
- // DW_FORM_flag_present is just flag with a value of one. We still give it a
- // value so just use the value.
- case dwarf::DW_FORM_flag_present:
- case dwarf::DW_FORM_flag:
+ }
+ case DIEValue::isString:
addULEB128('A');
addULEB128(Attribute);
- addULEB128(dwarf::DW_FORM_flag);
- addULEB128((int64_t)cast<DIEInteger>(Value)->getValue());
+ addULEB128(dwarf::DW_FORM_string);
+ addString(cast<DIEString>(Value)->getString());
break;
- case dwarf::DW_FORM_exprloc:
- case dwarf::DW_FORM_block1:
- case dwarf::DW_FORM_block2:
- case dwarf::DW_FORM_block4:
- case dwarf::DW_FORM_block:
+ case DIEValue::isBlock:
+ case DIEValue::isLoc:
addULEB128('A');
addULEB128(Attribute);
addULEB128(dwarf::DW_FORM_block);
@@ -347,8 +346,13 @@ void DIEHash::hashAttribute(AttrEntry Attr, dwarf::Tag Tag) {
hashBlockData(cast<DIELoc>(Value)->getValues());
}
break;
- default:
- llvm_unreachable("Add support for additional forms");
+ case DIEValue::isExpr:
+ case DIEValue::isLabel:
+ case DIEValue::isDelta:
+ case DIEValue::isEntry:
+ case DIEValue::isTypeSignature:
+ case DIEValue::isLocList:
+ llvm_unreachable("Add support for additional value types.");
}
}