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

  /external/google-breakpad/src/google_breakpad/processor/
stackwalker.h 133 template<typename InstructionType>
134 bool ScanForReturnAddress(InstructionType location_start,
135 InstructionType* location_found,
136 InstructionType* ip_found,
157 template<typename InstructionType>
158 bool ScanForReturnAddress(InstructionType location_start,
159 InstructionType* location_found,
160 InstructionType* ip_found,
162 for (InstructionType location = location_start;
163 location <= location_start + searchwords * sizeof(InstructionType);
    [all...]
  /external/libchrome/sandbox/win/src/sidestep/
mini_disassembler.h 70 InstructionType Disassemble(unsigned char* start,
80 InstructionType ProcessPrefixes(unsigned char* start, unsigned int* size);
85 InstructionType ProcessOpcode(unsigned char* start,
108 InstructionType instruction_type_;
mini_disassembler_types.h 14 enum InstructionType {
125 InstructionType type_;
146 InstructionType type_;
mini_disassembler.cpp 28 InstructionType MiniDisassembler::Disassemble(
37 InstructionType instruction_type = ProcessPrefixes(current_byte, &size);
87 InstructionType MiniDisassembler::ProcessPrefixes(unsigned char* start_byte,
89 InstructionType instruction_type = IT_GENERIC;
119 InstructionType MiniDisassembler::ProcessOpcode(unsigned char* start_byte,
preamble_patcher_with_stub.cpp 91 InstructionType instruction_type =
  /external/v8/src/mips64/
constants-mips64.h 991 inline Type InstructionType(TypeChecks checks = NORMAL) const;
1001 DCHECK(InstructionType() == kRegisterType ||
1002 InstructionType() == kImmediateType);
1007 DCHECK(InstructionType() == kRegisterType ||
1008 InstructionType() == kImmediateType);
1013 DCHECK(InstructionType() == kRegisterType);
1018 DCHECK(InstructionType() == kRegisterType);
1023 DCHECK(InstructionType() == kRegisterType);
1028 DCHECK(InstructionType() == kRegisterType ||
1029 InstructionType() == kImmediateType)
    [all...]
simulator-mips64.cc     [all...]
  /external/v8/src/mips/
constants-mips.h 934 inline Type InstructionType(TypeChecks checks = NORMAL) const;
943 DCHECK(InstructionType() == kRegisterType ||
944 InstructionType() == kImmediateType);
949 DCHECK(InstructionType() == kRegisterType ||
950 InstructionType() == kImmediateType);
955 DCHECK(InstructionType() == kRegisterType);
960 DCHECK(InstructionType() == kRegisterType);
965 DCHECK(InstructionType() == kRegisterType);
970 DCHECK(InstructionType() == kRegisterType ||
971 InstructionType() == kImmediateType)
    [all...]
simulator-mips.cc     [all...]
  /art/compiler/optimizing/
code_generator.h 689 * InstructionType: instruction that requires SlowPathCodeType
690 * SlowPathCodeType: subclass of SlowPathCode, with constructor SlowPathCodeType(InstructionType *)
692 template <typename InstructionType>
694 static_assert(std::is_base_of<HInstruction, InstructionType>::value,
695 "InstructionType is not a subclass of art::HInstruction");
707 // NOTE: This approach assumes each InstructionType only generates one SlowPathCodeType.
711 SlowPathCodeType* NewSlowPath(InstructionType* instruction) {
714 static_assert(std::is_constructible<SlowPathCodeType, InstructionType*>::value,
715 "SlowPathCodeType is not constructible from InstructionType*");
724 InstructionType* other_instruction = it.first
    [all...]
nodes.h 525 template <class InstructionType, typename ValueType>
526 InstructionType* CreateConstant(ValueType value,
527 ArenaSafeMap<ValueType, InstructionType*>* cache,
530 InstructionType* constant = nullptr;
539 constant = new (arena_) InstructionType(value, dex_pc);
    [all...]
  /external/v8/src/ia32/
disasm-ia32.cc 133 enum InstructionType {
148 InstructionType type;
166 void CopyTable(const ByteMnemonic bm[], InstructionType type);
167 void SetTableRange(InstructionType type,
207 InstructionType type) {
218 void InstructionTable::SetTableRange(InstructionType type,
    [all...]
  /external/v8/src/x87/
disasm-x87.cc 133 enum InstructionType {
148 InstructionType type;
166 void CopyTable(const ByteMnemonic bm[], InstructionType type);
167 void SetTableRange(InstructionType type,
207 InstructionType type) {
218 void InstructionTable::SetTableRange(InstructionType type,
    [all...]
  /external/v8/src/x64/
disasm-x64.cc 132 enum InstructionType {
159 InstructionType type;
176 void CopyTable(const ByteMnemonic bm[], InstructionType type);
177 void SetTableRange(InstructionType type, byte start, byte end, bool byte_size,
212 InstructionType type) {
226 void InstructionTable::SetTableRange(InstructionType type,
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILCFGStructurizer.cpp 265 typedef typename PassT::InstructionType InstrT;
    [all...]

Completed in 1096 milliseconds