Home
last modified time | relevance | path

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

/art/compiler/dwarf/
Ddebug_line_opcode_writer.h196 return code_factor_bits_; in GetCodeFactorBits()
224 code_factor_bits_(codeFactorBits),
232 DCHECK_GE(code_factor_bits_, 0); in FactorCodeOffset()
233 DCHECK_EQ((offset >> code_factor_bits_) << code_factor_bits_, offset); in FactorCodeOffset()
234 return offset >> code_factor_bits_; in FactorCodeOffset()
240 int code_factor_bits_; variable
/art/compiler/
Delf_writer_debug.cc312 int code_factor_bits_ = 0; in WriteDebugSections() local
317 code_factor_bits_ = 1; // 16-bit instuctions in WriteDebugSections()
323 code_factor_bits_ = 2; // 32-bit instructions in WriteDebugSections()
330 DebugLineOpCodeWriter<> opcodes(is64bit, code_factor_bits_); in WriteDebugSections()