mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 10:49:00 +00:00
2bfecc160b
TEST=build Change-Id: I2dd8ae69764af27f480a19995b491e98f52476ae Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/293902 Reviewed-by: Liam Appelbe <liama@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com>
134 lines
4 KiB
C++
134 lines
4 KiB
C++
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
// Classes that describe assembly patterns as used by inline caches.
|
|
|
|
#ifndef RUNTIME_VM_INSTRUCTIONS_IA32_H_
|
|
#define RUNTIME_VM_INSTRUCTIONS_IA32_H_
|
|
|
|
#ifndef RUNTIME_VM_INSTRUCTIONS_H_
|
|
#error Do not include instructions_ia32.h directly; use instructions.h instead.
|
|
#endif
|
|
|
|
#include "vm/allocation.h"
|
|
#include "vm/cpu.h"
|
|
|
|
namespace dart {
|
|
|
|
// Template class for all instruction pattern classes.
|
|
// P has to specify a static pattern and a pattern length method.
|
|
template <class P>
|
|
class InstructionPattern : public ValueObject {
|
|
public:
|
|
explicit InstructionPattern(uword pc) : start_(pc) { ASSERT(pc != 0); }
|
|
|
|
// Call to check if the instruction pattern at 'pc' match the instruction.
|
|
// 'P::pattern()' returns the expected byte pattern in form of an integer
|
|
// array with length of 'P::pattern_length_in_bytes()'. A '-1' element means
|
|
// 'any byte'.
|
|
bool IsValid() const {
|
|
return TestBytesWith(P::pattern(), P::pattern_length_in_bytes());
|
|
}
|
|
|
|
protected:
|
|
uword start() const { return start_; }
|
|
|
|
private:
|
|
// Returns true if the 'num_bytes' bytes at 'start_' correspond to
|
|
// array of integers 'data'. 'data' elements are either a byte or -1, which
|
|
// represents any byte.
|
|
bool TestBytesWith(const int* data, int num_bytes) const {
|
|
ASSERT(data != nullptr);
|
|
const uint8_t* byte_array = reinterpret_cast<const uint8_t*>(start_);
|
|
for (int i = 0; i < num_bytes; i++) {
|
|
// Skip comparison for data[i] < 0.
|
|
if ((data[i] >= 0) && (byte_array[i] != (0xFF & data[i]))) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
const uword start_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(InstructionPattern);
|
|
};
|
|
|
|
class CallPattern : public InstructionPattern<CallPattern> {
|
|
public:
|
|
explicit CallPattern(uword pc) : InstructionPattern(pc) {}
|
|
uword TargetAddress() const {
|
|
ASSERT(this->IsValid());
|
|
return this->start() + CallPattern::pattern_length_in_bytes() +
|
|
*reinterpret_cast<uword*>(this->start() + 1);
|
|
}
|
|
|
|
void SetTargetAddress(uword new_target) const {
|
|
ASSERT(this->IsValid());
|
|
*reinterpret_cast<uword*>(this->start() + 1) =
|
|
new_target - this->start() - CallPattern::pattern_length_in_bytes();
|
|
CPU::FlushICache(this->start() + 1, kWordSize);
|
|
}
|
|
|
|
static int pattern_length_in_bytes() { return kLengthInBytes; }
|
|
static const int* pattern() {
|
|
static const int kCallPattern[kLengthInBytes] = {0xE8, -1, -1, -1, -1};
|
|
return kCallPattern;
|
|
}
|
|
|
|
private:
|
|
static constexpr int kLengthInBytes = 5;
|
|
DISALLOW_COPY_AND_ASSIGN(CallPattern);
|
|
};
|
|
|
|
class ReturnPattern : public InstructionPattern<ReturnPattern> {
|
|
public:
|
|
explicit ReturnPattern(uword pc) : InstructionPattern(pc) {}
|
|
|
|
static const int* pattern() {
|
|
static const int kReturnPattern[kLengthInBytes] = {0xC3};
|
|
return kReturnPattern;
|
|
}
|
|
static int pattern_length_in_bytes() { return kLengthInBytes; }
|
|
|
|
private:
|
|
static constexpr int kLengthInBytes = 1;
|
|
};
|
|
|
|
// push ebp
|
|
// mov ebp, esp
|
|
class ProloguePattern : public InstructionPattern<ProloguePattern> {
|
|
public:
|
|
explicit ProloguePattern(uword pc) : InstructionPattern(pc) {}
|
|
|
|
static const int* pattern() {
|
|
static const int kProloguePattern[kLengthInBytes] = {0x55, 0x89, 0xe5};
|
|
return kProloguePattern;
|
|
}
|
|
|
|
static int pattern_length_in_bytes() { return kLengthInBytes; }
|
|
|
|
private:
|
|
static constexpr int kLengthInBytes = 3;
|
|
};
|
|
|
|
// mov ebp, esp
|
|
class SetFramePointerPattern
|
|
: public InstructionPattern<SetFramePointerPattern> {
|
|
public:
|
|
explicit SetFramePointerPattern(uword pc) : InstructionPattern(pc) {}
|
|
|
|
static const int* pattern() {
|
|
static const int kFramePointerPattern[kLengthInBytes] = {0x89, 0xe5};
|
|
return kFramePointerPattern;
|
|
}
|
|
|
|
static int pattern_length_in_bytes() { return kLengthInBytes; }
|
|
|
|
private:
|
|
static constexpr int kLengthInBytes = 2;
|
|
};
|
|
|
|
} // namespace dart
|
|
|
|
#endif // RUNTIME_VM_INSTRUCTIONS_IA32_H_
|