Home
last modified time | relevance | path

Searched refs:InstructionSize (Results 1 – 18 of 18) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cfi-verify/lib/
DFileAnalysis.cpp201 InstrMeta.InstructionSize, Target)) in getDefiniteNextInstruction()
207 getInstruction(InstrMeta.VMAddress + InstrMeta.InstructionSize); in getDefiniteNextInstruction()
451 uint64_t InstructionSize; in parseSectionContents() local
455 Disassembler->getInstruction(Instruction, InstructionSize, in parseSectionContents()
459 Byte += InstructionSize; in parseSectionContents()
461 uint64_t VMAddress = SectionAddress + Byte - InstructionSize; in parseSectionContents()
464 InstrMeta.InstructionSize = InstructionSize; in parseSectionContents()
479 if (MIA->evaluateBranch(Instruction, VMAddress, InstructionSize, Target)) { in parseSectionContents()
DGraphBuilder.cpp141 BranchInstrMeta.InstructionSize, Target)) { in buildFlowsToUndefined()
258 ParentMeta.InstructionSize, BranchTarget)) { in buildFlowGraphImpl()
DFileAnalysis.h81 uint64_t InstructionSize; // Size of this instruction. member
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/tools/llvm-cfi-verify/
DFileAnalysis.cpp119 EXPECT_EQ(1u, InstrMeta->InstructionSize); in TEST_F()
131 EXPECT_EQ(2u, InstrMeta->InstructionSize); in TEST_F()
143 EXPECT_EQ(3u, InstrMeta->InstructionSize); in TEST_F()
155 EXPECT_EQ(4u, InstrMeta->InstructionSize); in TEST_F()
167 EXPECT_EQ(10u, InstrMeta->InstructionSize); in TEST_F()
178 EXPECT_EQ(1u, InstrMeta->InstructionSize); in TEST_F()
188 EXPECT_EQ(2u, InstrMeta->InstructionSize); in TEST_F()
198 EXPECT_EQ(5u, InstrMeta->InstructionSize); in TEST_F()
220 EXPECT_EQ(1u, GoodInstrMeta->InstructionSize); in TEST_F()
225 EXPECT_EQ(1u, GoodInstrMeta->InstructionSize); in TEST_F()
/external/v8/src/profiler/
Dprofiler-listener.cc42 rec->instruction_size = code->InstructionSize(); in CodeCreateEvent()
55 rec->instruction_size = code->InstructionSize(); in CodeCreateEvent()
72 rec->instruction_size = code->InstructionSize(); in CodeCreateEvent()
190 rec->instruction_size = abstract_code->InstructionSize(); in CodeCreateEvent()
248 rec->instruction_size = code->InstructionSize(); in RegExpCodeCreateEvent()
Dcpu-profiler.cc377 rec->instruction_size = code.InstructionSize(); in LogBuiltins()
/external/sfntly/cpp/src/sfntly/table/truetype/
Dglyph_table.h90 virtual int32_t InstructionSize() = 0;
198 virtual int32_t InstructionSize();
270 virtual int32_t InstructionSize();
Dglyph_table.cc346 int32_t GlyphTable::SimpleGlyph::InstructionSize() { in InstructionSize() function in sfntly::GlyphTable::SimpleGlyph
354 data_->Slice(instructions_offset_, InstructionSize())); in Instructions()
540 int32_t GlyphTable::CompositeGlyph::InstructionSize() { in InstructionSize() function in sfntly::GlyphTable::CompositeGlyph
546 data_->Slice(instructions_offset_, InstructionSize())); in Instructions()
/external/v8/src/heap/
Dcode-stats.cc218 DCHECK(0 <= prev_pc_offset && prev_pc_offset <= code.InstructionSize()); in CollectCodeCommentStatistics()
219 delta += static_cast<int>(code.InstructionSize() - prev_pc_offset); in CollectCodeCommentStatistics()
/external/v8/src/logging/
Dlog.cc340 code->InstructionSize(), name, length); in LogRecordedBuffer()
394 code_event.code_size = static_cast<size_t>(code->InstructionSize()); in CodeCreateEvent()
414 code_event.code_size = static_cast<size_t>(code->InstructionSize()); in CodeCreateEvent()
434 code_event.code_size = static_cast<size_t>(code->InstructionSize()); in CodeCreateEvent()
458 code_event.code_size = static_cast<size_t>(code->InstructionSize()); in CodeCreateEvent()
480 code_event.code_size = static_cast<size_t>(code->InstructionSize()); in RegExpCodeCreateEvent()
497 code_event.code_size = static_cast<size_t>(to.InstructionSize()); in CodeMoveEvent()
611 event.code_size = code->InstructionSize(); in LogRecordedBuffer()
615 code->InstructionSize()); in LogRecordedBuffer()
686 event.code_len = code->InstructionSize(); in LogRecordedBuffer()
[all …]
/external/v8/src/codegen/
Dcode-reference.cc23 int instruction_size() const { return code->InstructionSize(); } in instruction_size()
/external/v8/src/objects/
Dcode-inl.h50 int AbstractCode::InstructionSize() { in InstructionSize() function
52 return GetCode().InstructionSize(); in InstructionSize()
233 int Code::InstructionSize() const { in InstructionSize() function
Dcode.h153 inline int InstructionSize() const;
567 inline int InstructionSize();
Dcode.cc706 int code_size = InstructionSize(); in Disassemble()
/external/v8/src/builtins/
Dbuiltins.cc253 code.InstructionSize()); in PrintBuiltinSize()
/external/v8/src/diagnostics/
Dperf-jit.cc239 WriteJitCodeLoadEntry(code_pointer, code->InstructionSize(), code_name, in LogRecordedBuffer()
Dobjects-debug.cc949 CHECK(IsAligned(InstructionSize(), in CodeVerify()
/external/v8/src/api/
Dapi.cc9036 pair.second->code.length_in_bytes = js_entry.InstructionSize(); in GetJSEntryStubs()