HomeSort by relevance Sort by last modified time
    Searched refs:IsRegister (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/llvm/include/llvm/MC/
MachineLocation.h 27 bool IsRegister; // True if location is a register.
37 : IsRegister(false), Register(0), Offset(0) {}
40 : IsRegister(true), Register(R), Offset(0) {}
43 : IsRegister(false), Register(R), Offset(O) {}
46 return IsRegister == Other.IsRegister && Register == Other.Register &&
52 bool isIndirect() const { return !IsRegister; }
53 bool isReg() const { return IsRegister; }
56 void setIsRegister(bool Is) { IsRegister = Is; }
61 IsRegister = true
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/
MachineLocation.h 24 bool IsRegister = false; // True if location is a register.
37 explicit MachineLocation(unsigned R) : IsRegister(true), Register(R) {}
42 return IsRegister == Other.IsRegister && Register == Other.Register &&
48 bool isIndirect() const { return !IsRegister; }
49 bool isReg() const { return IsRegister; }
52 void setIsRegister(bool Is) { IsRegister = Is; }
58 IsRegister = true;
65 IsRegister = false;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/
MachineLocation.h 24 bool IsRegister = false; // True if location is a register.
37 explicit MachineLocation(unsigned R) : IsRegister(true), Register(R) {}
42 return IsRegister == Other.IsRegister && Register == Other.Register &&
48 bool isIndirect() const { return !IsRegister; }
49 bool isReg() const { return IsRegister; }
52 void setIsRegister(bool Is) { IsRegister = Is; }
58 IsRegister = true;
65 IsRegister = false;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/
MachineLocation.h 24 bool IsRegister = false; // True if location is a register.
37 explicit MachineLocation(unsigned R) : IsRegister(true), Register(R) {}
42 return IsRegister == Other.IsRegister && Register == Other.Register &&
48 bool isIndirect() const { return !IsRegister; }
49 bool isReg() const { return IsRegister; }
52 void setIsRegister(bool Is) { IsRegister = Is; }
58 IsRegister = true;
65 IsRegister = false;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MachineLocation.h 24 bool IsRegister = false; // True if location is a register.
37 explicit MachineLocation(unsigned R) : IsRegister(true), Register(R) {}
42 return IsRegister == Other.IsRegister && Register == Other.Register &&
48 bool isIndirect() const { return !IsRegister; }
49 bool isReg() const { return IsRegister; }
52 void setIsRegister(bool Is) { IsRegister = Is; }
58 IsRegister = true;
65 IsRegister = false;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/
MachineLocation.h 24 bool IsRegister = false; // True if location is a register.
37 explicit MachineLocation(unsigned R) : IsRegister(true), Register(R) {}
42 return IsRegister == Other.IsRegister && Register == Other.Register &&
48 bool isIndirect() const { return !IsRegister; }
49 bool isReg() const { return IsRegister; }
52 void setIsRegister(bool Is) { IsRegister = Is; }
58 IsRegister = true;
65 IsRegister = false;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/
MachineLocation.h 24 bool IsRegister = false; // True if location is a register.
37 explicit MachineLocation(unsigned R) : IsRegister(true), Register(R) {}
42 return IsRegister == Other.IsRegister && Register == Other.Register &&
48 bool isIndirect() const { return !IsRegister; }
49 bool isReg() const { return IsRegister; }
52 void setIsRegister(bool Is) { IsRegister = Is; }
58 IsRegister = true;
65 IsRegister = false;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/
MachineLocation.h 24 bool IsRegister = false; // True if location is a register.
37 explicit MachineLocation(unsigned R) : IsRegister(true), Register(R) {}
42 return IsRegister == Other.IsRegister && Register == Other.Register &&
48 bool isIndirect() const { return !IsRegister; }
49 bool isReg() const { return IsRegister; }
52 void setIsRegister(bool Is) { IsRegister = Is; }
58 IsRegister = true;
65 IsRegister = false;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MachineLocation.h 24 bool IsRegister = false; // True if location is a register.
37 explicit MachineLocation(unsigned R) : IsRegister(true), Register(R) {}
42 return IsRegister == Other.IsRegister && Register == Other.Register &&
48 bool isIndirect() const { return !IsRegister; }
49 bool isReg() const { return IsRegister; }
52 void setIsRegister(bool Is) { IsRegister = Is; }
58 IsRegister = true;
65 IsRegister = false;
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MachineLocation.h 29 bool IsRegister; // True if location is a register.
39 : IsRegister(false), Register(0), Offset(0) {}
41 : IsRegister(true), Register(R), Offset(0) {}
43 : IsRegister(false), Register(R), Offset(O) {}
46 return IsRegister == Other.IsRegister && Register == Other.Register &&
51 bool isReg() const { return IsRegister; }
54 void setIsRegister(bool Is) { IsRegister = Is; }
58 IsRegister = true;
63 IsRegister = false
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-gap-resolver-x87.cc 132 if (source->IsRegister()) ++source_uses_[source->index()];
135 if (destination->IsRegister()) ++destination_uses_[destination->index()];
143 if (source->IsRegister()) {
149 if (destination->IsRegister()) {
221 if (operand->IsRegister() && operand->index() == spilled_register_) {
267 if (source->IsRegister()) {
268 DCHECK(destination->IsRegister() || destination->IsStackSlot());
274 DCHECK(destination->IsRegister() || destination->IsStackSlot());
276 if (destination->IsRegister()) {
290 if (destination->IsRegister()) {
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-gap-resolver-ia32.cc 131 if (source->IsRegister()) ++source_uses_[source->index()];
134 if (destination->IsRegister()) ++destination_uses_[destination->index()];
142 if (source->IsRegister()) {
148 if (destination->IsRegister()) {
220 if (operand->IsRegister() && operand->index() == spilled_register_) {
266 if (source->IsRegister()) {
267 DCHECK(destination->IsRegister() || destination->IsStackSlot());
273 DCHECK(destination->IsRegister() || destination->IsStackSlot());
275 if (destination->IsRegister()) {
289 if (destination->IsRegister()) {
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-gap-resolver-x64.cc 148 if (source->IsRegister()) {
150 if (destination->IsRegister()) {
161 if (destination->IsRegister()) {
173 if (destination->IsRegister()) {
244 if (source->IsRegister() && destination->IsRegister()) {
252 } else if ((source->IsRegister() && destination->IsStackSlot()) ||
253 (source->IsStackSlot() && destination->IsRegister())) {
256 cgen_->ToRegister(source->IsRegister() ? source : destination);
258 cgen_->ToOperand(source->IsRegister() ? destination : source)
    [all...]
  /external/v8/src/compiler/
linkage.h 95 if (!caller_location.IsRegister()) {
138 bool IsRegister() const { return TypeField::decode(bit_field_) == REGISTER; }
140 return IsRegister() && GetLocation() == ANY_REGISTER;
142 bool IsCallerFrameSlot() const { return !IsRegister() && GetLocation() < 0; }
143 bool IsCalleeFrameSlot() const { return !IsRegister() && GetLocation() >= 0; }
146 DCHECK(IsRegister());
  /external/v8/src/crankshaft/arm/
lithium-gap-resolver-arm.cc 160 if (source->IsRegister()) {
182 if (saved_destination_->IsRegister()) {
206 if (source->IsRegister()) {
208 if (destination->IsRegister()) {
216 if (destination->IsRegister()) {
235 if (destination->IsRegister()) {
  /external/v8/src/crankshaft/arm64/
lithium-gap-resolver-arm64.cc 156 if (source->IsRegister()) {
181 if (saved_destination_->IsRegister()) {
208 if (source->IsRegister()) {
210 if (destination->IsRegister()) {
219 if (destination->IsRegister()) {
228 if (destination->IsRegister()) {
  /external/v8/src/crankshaft/mips/
lithium-gap-resolver-mips.cc 146 if (source->IsRegister()) {
167 if (saved_destination_->IsRegister()) {
193 if (source->IsRegister()) {
195 if (destination->IsRegister()) {
203 if (destination->IsRegister()) {
228 if (destination->IsRegister()) {
  /external/v8/src/crankshaft/mips64/
lithium-gap-resolver-mips64.cc 146 if (source->IsRegister()) {
167 if (saved_destination_->IsRegister()) {
193 if (source->IsRegister()) {
195 if (destination->IsRegister()) {
203 if (destination->IsRegister()) {
228 if (destination->IsRegister()) {
  /external/v8/src/crankshaft/ppc/
lithium-gap-resolver-ppc.cc 148 if (source->IsRegister()) {
169 if (saved_destination_->IsRegister()) {
193 if (source->IsRegister()) {
195 if (destination->IsRegister()) {
203 if (destination->IsRegister()) {
219 if (destination->IsRegister()) {
  /external/v8/src/crankshaft/s390/
lithium-gap-resolver-s390.cc 144 if (source->IsRegister()) {
164 if (saved_destination_->IsRegister()) {
187 if (source->IsRegister()) {
189 if (destination->IsRegister()) {
197 if (destination->IsRegister()) {
213 if (destination->IsRegister()) {
  /art/compiler/optimizing/
intrinsics_utils.h 67 DCHECK(out.IsRegister()); // TODO: Replace this when we support output in memory.
locations.h 145 bool IsRegister() const {
162 return IsRegister() || IsFpuRegister() || IsRegisterPair() || IsFpuRegisterPair();
166 DCHECK(IsRegister() || IsFpuRegister());
182 DCHECK(IsRegister());
439 if (loc.IsRegister()) {
448 if (loc.IsRegister()) {
652 return input.IsRegister()
  /external/v8/src/compiler/x64/
code-generator-x64.cc 327 if (instr->Output()->IsRegister()) { \
338 if (instr->InputAt(0)->IsRegister()) { \
344 if (instr->InputAt(1)->IsRegister()) { \
364 if (instr->InputAt(0)->IsRegister()) { \
370 if (instr->InputAt(1)->IsRegister()) { \
382 if (instr->InputAt(0)->IsRegister()) { \
390 if (instr->InputAt(1)->IsRegister()) { \
402 if (instr->Output()->IsRegister()) { \
408 if (instr->Output()->IsRegister()) { \
421 } else if (instr->InputAt(0)->IsRegister()) { \
    [all...]
instruction-scheduler-x64.cc 153 return instr->InputAt(0)->IsRegister() ? kNoOpcodeFlags
163 return instr->InputAt(0)->IsRegister() ? kNoOpcodeFlags
  /art/disassembler/
disassembler_arm64.cc 47 if (reg.IsRegister() && reg.Is64Bits()) {

Completed in 759 milliseconds

1 2 3 4