Home
last modified time | relevance | path

Searched refs:pc_offset_ (Results 1 – 10 of 10) sorted by relevance

/external/v8/src/wasm/
Dwasm-debug.h58 : pc_offset_(pc_offset), values_(std::move(values)) {} in Entry()
61 explicit Entry(int pc_offset) : pc_offset_(pc_offset) {} in Entry()
63 int pc_offset() const { return pc_offset_; } in pc_offset()
98 int pc_offset_;
Dwasm-debug.cc174 os << std::setw(6) << std::hex << pc_offset_ << std::dec << " ["; in Print()
/external/v8/src/compiler/backend/
Dcode-generator-impl.h197 pc_offset_(pc_offset), in DeoptimizationExit()
216 int pc_offset() const { return pc_offset_; } in pc_offset()
232 const int pc_offset_; variable
/external/vixl/src/aarch64/
Dmacro-assembler-aarch64.h197 pc_offset_(0), in BranchInfo()
201 : pc_offset_(offset), label_(label), branch_type_(branch_type) { in BranchInfo()
203 pc_offset_ + Instruction::GetImmBranchForwardRange(branch_type_); in BranchInfo()
217 bool same_offsets = (branch_1.pc_offset_ == branch_2.pc_offset_); in IsValidComparison()
226 return pc_offset_ == other.pc_offset_;
230 return pc_offset_ < other.pc_offset_;
234 return pc_offset_ <= other.pc_offset_;
238 return pc_offset_ > other.pc_offset_;
245 ptrdiff_t pc_offset_; variable
Dmacro-assembler-aarch64.cc288 ptrdiff_t branch_pos = branch_info->pc_offset_; in Emit()
/external/swiftshader/third_party/subzero/src/DartARM32/
Dassembler_arm.h1237 : pc_offset_(pc_offset), comment_(comment) { } in CodeComment()
1239 intptr_t pc_offset() const { return pc_offset_; } in pc_offset()
1243 intptr_t pc_offset_;
/external/v8/src/wasm/baseline/
Dliftoff-compiler.cc185 : pc_offset_(pc_offset), values_(std::move(values)) {} in EntryBuilder()
188 return DebugSideTable::Entry{pc_offset_, std::move(values_)}; in ToTableEntry()
191 int pc_offset() const { return pc_offset_; } in pc_offset()
192 void set_pc_offset(int new_pc_offset) { pc_offset_ = new_pc_offset; } in set_pc_offset()
195 int pc_offset_; member in v8::internal::wasm::__anon69d3db0f0111::DebugSideTableBuilder::EntryBuilder
/external/vixl/src/aarch32/
Ddisasm-aarch32.h187 : immediate_(immediate), pc_offset_(pc_offset) {} in Location()
189 Offset GetPCOffset() const { return pc_offset_; } in GetPCOffset()
193 Offset pc_offset_; variable
/external/v8/src/codegen/arm64/
Dassembler-arm64.h2657 : pc_offset_(offset), label_(label) {} in FarBranchInfo()
2659 int pc_offset_; variable
Dassembler-arm64.cc654 if (it->second.pc_offset_ == link_offset) { in DeleteUnresolvedBranchInfoForLabelTraverse()
4503 Instruction* branch = InstructionAt(it->second.pc_offset_); in EmitVeneers()