Home
last modified time | relevance | path

Searched refs:RVAToLabel (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/courgette/
Dassembly_program.h42 typedef std::map<RVA, Label*> RVAToLabel; typedef
132 void PrintLabelCounts(RVAToLabel* labels);
143 Label* FindLabel(RVA rva, RVAToLabel* labels);
146 static void UnassignIndexes(RVAToLabel* labels);
147 static void DefaultAssignIndexes(RVAToLabel* labels);
148 static void AssignRemainingIndexes(RVAToLabel* labels);
161 RVAToLabel rel32_labels_;
162 RVAToLabel abs32_labels_;
Dassembly_program.cc142 static void DeleteContainedLabels(const RVAToLabel& labels) { in DeleteContainedLabels()
143 for (RVAToLabel::const_iterator p = labels.begin(); p != labels.end(); ++p) in DeleteContainedLabels()
249 Label* AssemblyProgram::FindLabel(RVA rva, RVAToLabel* labels) { in FindLabel()
258 void AssemblyProgram::UnassignIndexes(RVAToLabel* labels) { in UnassignIndexes()
259 for (RVAToLabel::iterator p = labels->begin(); p != labels->end(); ++p) { in UnassignIndexes()
268 void AssemblyProgram::DefaultAssignIndexes(RVAToLabel* labels) { in DefaultAssignIndexes()
270 for (RVAToLabel::iterator p = labels->begin(); p != labels->end(); ++p) { in DefaultAssignIndexes()
282 void AssemblyProgram::AssignRemainingIndexes(RVAToLabel* labels) { in AssignRemainingIndexes()
292 for (RVAToLabel::iterator p = labels->begin(); p != labels->end(); ++p) { in AssignRemainingIndexes()
309 for (RVAToLabel::iterator p = labels->begin(); p != labels->end(); ++p) { in AssignRemainingIndexes()
[all …]