Home
last modified time | relevance | path

Searched refs:operand_size (Results 1 – 12 of 12) sorted by relevance

/external/v8/test/unittests/interpreter/
Dconstant-array-builder-unittest.cc51 OperandSize operand_size = builder.CreateReservedEntry(); in TEST_F() local
52 CHECK(operand_size == OperandSize::kByte); in TEST_F()
102 OperandSize operand_size = builder.CreateReservedEntry(); in TEST_F() local
103 CHECK(operand_size == OperandSize::kByte); in TEST_F()
127 OperandSize operand_size = builder.CreateReservedEntry(); in TEST_F() local
128 CHECK(operand_size == OperandSize::kShort); in TEST_F()
136 OperandSize operand_size = builder.CreateReservedEntry(); in TEST_F() local
137 CHECK(operand_size == OperandSize::kShort); in TEST_F()
139 builder.CommitReservedEntry(operand_size, object); in TEST_F()
143 OperandSize operand_size = builder.CreateReservedEntry(); in TEST_F() local
[all …]
/external/v8/src/interpreter/
Dconstant-array-builder.cc135 size_t ConstantArrayBuilder::CommitReservedEntry(OperandSize operand_size, in CommitReservedEntry() argument
137 DiscardReservedEntry(operand_size); in CommitReservedEntry()
143 if (operand_size == OperandSize::kByte && in CommitReservedEntry()
153 DCHECK(operand_size == OperandSize::kShort || index < idx8_slice_.capacity()); in CommitReservedEntry()
159 void ConstantArrayBuilder::DiscardReservedEntry(OperandSize operand_size) { in DiscardReservedEntry() argument
160 switch (operand_size) { in DiscardReservedEntry()
Dconstant-array-builder.h55 size_t CommitReservedEntry(OperandSize operand_size, Handle<Object> object);
58 void DiscardReservedEntry(OperandSize operand_size);
Dbytecodes.cc44 const char* Bytecodes::OperandSizeToString(OperandSize operand_size) { in OperandSizeToString() argument
45 switch (operand_size) { in OperandSizeToString()
341 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_size) { in operator <<() argument
342 return os << Bytecodes::OperandSizeToString(operand_size); in operator <<()
Dbytecodes.h341 static const char* OperandSizeToString(OperandSize operand_size);
/external/v8/src/x64/
Ddisasm-x64.cc410 OperandSize operand_size() { in operand_size() function in disasm::DisassemblerX64
418 return "bwlq"[operand_size()]; in operand_size_code()
721 byte_size_immediate ? OPERAND_BYTE_SIZE : operand_size(); in PrintImmediateOp()
766 count += PrintImmediate(data + 1 + count, operand_size()); in F6F7Instruction()
1205 switch (operand_size()) { in AVXInstruction()
2016 switch (operand_size()) { in InstructionDecode()
2080 count += PrintImmediate(data + count, operand_size()); in InstructionDecode()
2153 if (operand_size() == OPERAND_WORD_SIZE) { in InstructionDecode()
2271 switch (operand_size()) { in InstructionDecode()
2309 switch (operand_size()) { in InstructionDecode()
Dmacro-assembler-x64.h1002 return (target.requires_rex() ? 2 : 1) + target.operand_size(); in CallSize()
Dassembler-x64.h393 int operand_size() const { return len_; } in operand_size() function
/external/v8/src/ppc/
Dsimulator-ppc.h275 void ProcessPUW(Instruction* instr, int num_regs, int operand_size,
/external/v8/src/arm/
Dsimulator-arm.h287 int operand_size,
Dsimulator-arm.cc1655 int operand_size = (precision == kSinglePrecision) ? 4 : 8; in HandleVList() local
1671 ProcessPU(instr, num_regs, operand_size, &start_address, &end_address); in HandleVList()
1700 DCHECK(reinterpret_cast<intptr_t>(address) - operand_size == end_address); in HandleVList()
/external/google-breakpad/src/third_party/libdisasm/swig/
Dlibdisasm.i54 %rename(operand_size) x86_operand_size;