HomeSort by relevance Sort by last modified time
    Searched refs:RVAToLabel (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/courgette/
assembly_program.h 42 typedef std::map<RVA, Label*> RVAToLabel;
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_;
assembly_program.cc 142 static void DeleteContainedLabels(const RVAToLabel& labels) {
143 for (RVAToLabel::const_iterator p = labels.begin(); p != labels.end(); ++p)
249 Label* AssemblyProgram::FindLabel(RVA rva, RVAToLabel* labels) {
258 void AssemblyProgram::UnassignIndexes(RVAToLabel* labels) {
259 for (RVAToLabel::iterator p = labels->begin(); p != labels->end(); ++p) {
268 void AssemblyProgram::DefaultAssignIndexes(RVAToLabel* labels) {
270 for (RVAToLabel::iterator p = labels->begin(); p != labels->end(); ++p) {
282 void AssemblyProgram::AssignRemainingIndexes(RVAToLabel* labels) {
292 for (RVAToLabel::iterator p = labels->begin(); p != labels->end(); ++p) {
309 for (RVAToLabel::iterator p = labels->begin(); p != labels->end(); ++p)
    [all...]

Completed in 2496 milliseconds