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

  /external/v8/src/interpreter/
bytecode-operands.cc 54 const char* OperandSizeToString(OperandSize operand_size) {
55 switch (operand_size) {
75 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_size) {
76 return os << OperandSizeToString(operand_size);
constant-array-builder.cc 22 Zone* zone, size_t start_index, size_t capacity, OperandSize operand_size)
26 operand_size_(operand_size),
233 ConstantArrayBuilder::OperandSizeToSlice(OperandSize operand_size) const {
235 switch (operand_size) {
249 DCHECK(slice->operand_size() == operand_size);
266 return idx_slice_[i]->operand_size();
280 size_t ConstantArrayBuilder::CommitReservedEntry(OperandSize operand_size,
282 DiscardReservedEntry(operand_size);
288 ConstantArraySlice* slice = OperandSizeToSlice(operand_size);
    [all...]
constant-array-builder.h 83 size_t CommitReservedEntry(OperandSize operand_size, Smi* value);
86 void DiscardReservedEntry(OperandSize operand_size);
149 OperandSize operand_size);
166 inline OperandSize operand_size() const { return operand_size_; } function in struct:v8::internal::interpreter::BASE_EMBEDDED::final
179 ConstantArraySlice* OperandSizeToSlice(OperandSize operand_size) const;
interpreter-assembler.cc 377 OperandSize operand_size) {
380 switch (operand_size) {
394 OperandSize operand_size) {
397 switch (operand_size) {
413 OperandSize operand_size = local
415 return BytecodeUnsignedOperand(operand_index, operand_size);
421 OperandSize operand_size = local
423 DCHECK_EQ(operand_size, OperandSize::kByte);
424 return BytecodeUnsignedOperand(operand_index, operand_size);
430 OperandSize operand_size local
442 OperandSize operand_size = local
458 OperandSize operand_size = local
471 OperandSize operand_size = local
480 OperandSize operand_size = local
489 OperandSize operand_size = local
    [all...]
bytecode-operands.h 131 const OperandSize& operand_size);
bytecodes.cc 114 OperandSize operand_size = local
116 offset += static_cast<int>(operand_size);
interpreter-assembler.h 290 OperandSize operand_size);
292 OperandSize operand_size);
  /external/vixl/src/aarch64/
abi-aarch64.h 100 unsigned operand_size = AlignUp(size, kWRegSizeInBytes); local
118 return GenericOperand(MemOperand(stack_pointer_, offset), operand_size);
122 return GenericOperand(Register(NGRN_++, operand_size * kBitsPerByte));
144 return GenericOperand(MemOperand(stack_pointer_, offset), operand_size);
macro-assembler-aarch64.cc 1620 int operand_size = static_cast<int>(dst.GetSizeInBits()); local
    [all...]
  /external/v8/src/x64/
disasm-x64.cc 411 OperandSize operand_size() { function in class:disasm::DisassemblerX64
419 return "bwlq"[operand_size()];
722 byte_size_immediate ? OPERAND_BYTE_SIZE : operand_size();
767 count += PrintImmediate(data + 1 + count, operand_size());
    [all...]
macro-assembler-x64.h     [all...]
assembler-x64.h 402 int operand_size() const { return len_; }
    [all...]
  /external/v8/src/ppc/
simulator-ppc.h 275 void ProcessPUW(Instruction* instr, int num_regs, int operand_size,
  /external/google-breakpad/src/third_party/libdisasm/swig/
libdisasm.i 54 %rename(operand_size) x86_operand_size;
  /external/v8/src/arm/
simulator-arm.h 290 int operand_size,
simulator-arm.cc 1651 int operand_size = (precision == kSinglePrecision) ? 4 : 8; local
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc 1058 int operand_size) {
1059 DCHECK(operand_size == 1 || operand_size == 2 || operand_size == 4);
1061 if (operand_size == 2) {
1063 } else if (operand_size == 1) {
1066 // No need to do any preparation if operand_size is 4
1096 int operand_size) {
1097 DCHECK(operand_size == 1 || operand_size == 2)
    [all...]
macro-assembler-mips.h 656 void ByteSwapSigned(Register dest, Register src, int operand_size);
657 void ByteSwapUnsigned(Register dest, Register src, int operand_size);
    [all...]
  /external/v8/src/mips64/
macro-assembler-mips64.cc 1204 int operand_size) {
1205 DCHECK(operand_size == 1 || operand_size == 2 || operand_size == 4 ||
1206 operand_size == 8);
1208 if (operand_size == 1) {
1213 } else if (operand_size == 2) {
1218 } else if (operand_size == 4) {
1229 int operand_size) {
1230 DCHECK(operand_size == 1 || operand_size == 2 || operand_size == 4)
    [all...]
macro-assembler-mips64.h 692 void ByteSwapSigned(Register dest, Register src, int operand_size);
693 void ByteSwapUnsigned(Register dest, Register src, int operand_size);
    [all...]
  /external/v8/src/s390/
simulator-s390.h 267 void ProcessPUW(Instruction* instr, int num_regs, int operand_size,

Completed in 284 milliseconds