Lines Matching refs:instruction_set
22 CompiledCode::CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set, in CompiledCode() argument
24 : compiler_driver_(compiler_driver), instruction_set_(instruction_set), in CompiledCode()
29 CompiledCode::CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set, in CompiledCode() argument
31 : compiler_driver_(compiler_driver), instruction_set_(instruction_set), in CompiledCode()
82 uint32_t CompiledCode::AlignCode(uint32_t offset, InstructionSet instruction_set) { in AlignCode() argument
83 return RoundUp(offset, GetInstructionSetAlignment(instruction_set)); in AlignCode()
90 size_t CompiledCode::CodeDelta(InstructionSet instruction_set) { in CodeDelta() argument
91 switch (instruction_set) { in CodeDelta()
103 LOG(FATAL) << "Unknown InstructionSet: " << instruction_set; in CodeDelta()
109 InstructionSet instruction_set) { in CodePointer() argument
110 switch (instruction_set) { in CodePointer()
124 LOG(FATAL) << "Unknown InstructionSet: " << instruction_set; in CodePointer()
144 InstructionSet instruction_set, in CompiledMethod() argument
153 : CompiledCode(driver, instruction_set, quick_code), frame_size_in_bytes_(frame_size_in_bytes), in CompiledMethod()
162 InstructionSet instruction_set, in CompiledMethod() argument
167 : CompiledCode(driver, instruction_set, code), in CompiledMethod()
177 CompiledMethod::CompiledMethod(CompilerDriver* driver, InstructionSet instruction_set, in CompiledMethod() argument
180 : CompiledCode(driver, instruction_set, code, symbol), in CompiledMethod()
188 CompiledMethod::CompiledMethod(CompilerDriver* driver, InstructionSet instruction_set, in CompiledMethod() argument
190 : CompiledCode(driver, instruction_set, code, symbol), in CompiledMethod()
199 InstructionSet instruction_set, in SwapAllocCompiledMethod() argument
210 alloc.construct(ret, driver, instruction_set, quick_code, frame_size_in_bytes, core_spill_mask, in SwapAllocCompiledMethod()
216 InstructionSet instruction_set, in SwapAllocCompiledMethod() argument
223 alloc.construct(ret, driver, instruction_set, quick_code, frame_size_in_bytes, core_spill_mask, in SwapAllocCompiledMethod()