OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:jump_offset
(Results
1 - 8
of
8
) sorted by null
/external/v8/src/compiler/
interpreter-assembler.h
143
// Jump relative to the current bytecode by |
jump_offset
|.
144
void Jump(Node*
jump_offset
);
146
// Jump relative to the current bytecode by |
jump_offset
| if the
148
void JumpIfWordEqual(Node* lhs, Node* rhs, Node*
jump_offset
);
/external/v8/test/unittests/compiler/
instruction-sequence-unittest.cc
482
void InstructionSequenceTest::WireBlock(size_t block_offset, int
jump_offset
) {
483
size_t target_block_offset = block_offset + static_cast<size_t>(
jump_offset
);
instruction-sequence-unittest.h
213
void WireBlock(size_t block_offset, int
jump_offset
);
interpreter-assembler-unittest.cc
224
TRACED_FOREACH(int,
jump_offset
, jump_offsets) {
227
m.Jump(m.Int32Constant(
jump_offset
));
235
IsInt32Constant(
jump_offset
));
/toolchain/binutils/binutils-2.25/bfd/
elf-m10300.c
3330
bfd_signed_vma
jump_offset
;
local
[
all
...]
/art/compiler/optimizing/
code_generator_arm64.cc
568
ptrdiff_t
jump_offset
= target_label->location() - table_start_.location();
local
569
DCHECK_GT(
jump_offset
, std::numeric_limits<int32_t>::min());
570
DCHECK_LE(
jump_offset
, std::numeric_limits<int32_t>::max());
571
Literal<int32_t> literal(
jump_offset
);
[
all
...]
/external/v8/src/mips64/
assembler-mips64.cc
1145
uint64_t Assembler::
jump_offset
(Label* L) {
function in class:v8::internal::Assembler
[
all
...]
assembler-mips64.h
456
uint64_t
jump_offset
(Label* L);
[
all
...]
Completed in 263 milliseconds