Lines Matching refs:driver
119 CompiledMethod::CompiledMethod(CompilerDriver& driver, in CompiledMethod() argument
128 : CompiledCode(&driver, instruction_set, code), frame_size_in_bytes_(frame_size_in_bytes), in CompiledMethod()
130 mapping_table_(driver.DeduplicateMappingTable(mapping_table)), in CompiledMethod()
131 vmap_table_(driver.DeduplicateVMapTable(vmap_table)), in CompiledMethod()
132 gc_map_(driver.DeduplicateGCMap(native_gc_map)) { in CompiledMethod()
135 CompiledMethod::CompiledMethod(CompilerDriver& driver, in CompiledMethod() argument
141 : CompiledCode(&driver, instruction_set, code), in CompiledMethod()
144 mapping_table_ = driver.DeduplicateMappingTable(std::vector<uint8_t>()); in CompiledMethod()
145 vmap_table_ = driver.DeduplicateVMapTable(std::vector<uint8_t>()); in CompiledMethod()
146 gc_map_ = driver.DeduplicateGCMap(std::vector<uint8_t>()); in CompiledMethod()
150 CompiledMethod::CompiledMethod(CompilerDriver& driver, InstructionSet instruction_set, in CompiledMethod() argument
153 : CompiledCode(&driver, instruction_set, code, symbol), in CompiledMethod()
155 fp_spill_mask_(0), gc_map_(driver.DeduplicateGCMap(gc_map)) { in CompiledMethod()
156 mapping_table_ = driver.DeduplicateMappingTable(std::vector<uint8_t>()); in CompiledMethod()
157 vmap_table_ = driver.DeduplicateVMapTable(std::vector<uint8_t>()); in CompiledMethod()
160 CompiledMethod::CompiledMethod(CompilerDriver& driver, InstructionSet instruction_set, in CompiledMethod() argument
162 : CompiledCode(&driver, instruction_set, code, symbol), in CompiledMethod()
165 mapping_table_ = driver.DeduplicateMappingTable(std::vector<uint8_t>()); in CompiledMethod()
166 vmap_table_ = driver.DeduplicateVMapTable(std::vector<uint8_t>()); in CompiledMethod()
167 gc_map_ = driver.DeduplicateGCMap(std::vector<uint8_t>()); in CompiledMethod()