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

1 2 3

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILUtilityFunctions.h 18 #define ExpandCaseTo32bitIntTypes(Instr) \
19 case Instr##_i32:
21 #define ExpandCaseTo32bitIntTruncTypes(Instr) \
22 case Instr##_i32i8: \
23 case Instr##_i32i16:
25 #define ExpandCaseToIntTypes(Instr) \
26 ExpandCaseTo32bitIntTypes(Instr)
28 #define ExpandCaseToIntTruncTypes(Instr) \
29 ExpandCaseTo32bitIntTruncTypes(Instr)
31 #define ExpandCaseToFloatTypes(Instr) \
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILUtilityFunctions.h 18 #define ExpandCaseTo32bitIntTypes(Instr) \
19 case Instr##_i32:
21 #define ExpandCaseTo32bitIntTruncTypes(Instr) \
22 case Instr##_i32i8: \
23 case Instr##_i32i16:
25 #define ExpandCaseToIntTypes(Instr) \
26 ExpandCaseTo32bitIntTypes(Instr)
28 #define ExpandCaseToIntTruncTypes(Instr) \
29 ExpandCaseTo32bitIntTruncTypes(Instr)
31 #define ExpandCaseToFloatTypes(Instr) \
    [all...]
  /external/v8/src/arm/
constants-arm.h 116 // General constants are in an anonymous enum in class Instr.
181 // Instr is merely used by the Assembler to distinguish 32bit integers
185 typedef int32_t Instr;
446 extern const Instr kPopInstruction;
450 extern const Instr kPushRegPattern;
454 extern const Instr kPopRegPattern;
457 extern const Instr kMovLrPc;
459 extern const Instr kLdrPCMask;
460 extern const Instr kLdrPCPattern;
462 extern const Instr kBlxRegMask
    [all...]
assembler-arm.h 426 // instructions instr is ignored.
427 bool is_single_instruction(Instr instr = 0) const;
602 extern const Instr kMovLrPc;
603 extern const Instr kLdrPCMask;
604 extern const Instr kLdrPCPattern;
605 extern const Instr kBlxRegMask;
606 extern const Instr kBlxRegPattern;
607 extern const Instr kBlxIp;
609 extern const Instr kMovMvnMask
    [all...]
assembler-arm.cc 144 Instr* pc = reinterpret_cast<Instr*>(pc_);
145 Instr* instr = reinterpret_cast<Instr*>(instructions); local
147 *(pc + i) = *(instr + i);
239 const Instr kPopInstruction =
244 const Instr kPushRegPattern =
248 const Instr kPopRegPattern =
251 const Instr kMovLrPc = al | MOV | kRegister_pc_Code | kRegister_lr_Code * B12
554 Instr instr = instr_at(pos); local
571 Instr instr = instr_at(pos); local
605 Instr instr = instr_at(l.pos()); local
    [all...]
assembler-arm-inl.h 204 Instr current_instr = Assembler::instr_at(pc_);
205 Instr next_instr = Assembler::instr_at(pc_ + Assembler::kInstrSize);
223 Instr current_instr = Assembler::instr_at(pc_);
325 void Assembler::emit(Instr x) {
327 *reinterpret_cast<Instr*>(pc_) = x;
334 Instr instr = Memory::int32_at(target_pc); local
339 if ((instr & kBxInstMask) == kBxInstPattern) {
341 instr = Memory::int32_at(target_pc);
347 if ((instr & kBlxRegMask) == kBlxRegPattern)
    [all...]
  /art/compiler/utils/mips/
constants_mips.h 89 class Instr {
99 // to allocate or create instances of class Instr.
100 // Use the At(pc) function to create references to Instr.
101 static Instr* At(uintptr_t pc) { return reinterpret_cast<Instr*>(pc); }
104 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr);
  /external/chromium_org/v8/src/arm/
constants-arm.h 48 inline int DecodeConstantPoolLength(int instr) {
49 ASSERT((instr & kConstantPoolMarkerMask) == kConstantPoolMarker);
50 return ((instr >> 4) & 0xfff0) | (instr & 0xf);
75 // General constants are in an anonymous enum in class Instr.
140 // Instr is merely used by the Assembler to distinguish 32bit integers
144 typedef int32_t Instr;
433 extern const Instr kPopInstruction;
437 extern const Instr kPushRegPattern;
441 extern const Instr kPopRegPattern
    [all...]
assembler-arm.h 560 // instructions instr is ignored.
561 bool is_single_instruction(const Assembler* assembler, Instr instr = 0) const;
677 extern const Instr kMovLrPc;
678 extern const Instr kLdrPCMask;
679 extern const Instr kLdrPCPattern;
680 extern const Instr kBlxRegMask;
681 extern const Instr kBlxRegPattern;
682 extern const Instr kBlxIp;
684 extern const Instr kMovMvnMask
    [all...]
assembler-arm.cc 300 Instr* pc = reinterpret_cast<Instr*>(pc_);
301 Instr* instr = reinterpret_cast<Instr*>(instructions); local
303 *(pc + i) = *(instr + i);
460 const Instr kPopInstruction =
465 const Instr kPushRegPattern =
469 const Instr kPopRegPattern =
472 const Instr kMovLrPc = al | MOV | kRegister_pc_Code | kRegister_lr_Code * B12
777 Instr instr = instr_at(pos); local
794 Instr instr = instr_at(pos); local
828 Instr instr = instr_at(l.pos()); local
1720 Instr instr; local
    [all...]
  /art/compiler/utils/x86/
constants_x86.h 103 class Instr {
115 // to allocate or create instances of class Instr.
116 // Use the At(pc) function to create references to Instr.
117 static Instr* At(uintptr_t pc) { return reinterpret_cast<Instr*>(pc); }
120 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr);
  /external/chromium_org/v8/src/mips/
assembler-mips.h 520 static const int kInstrSize = sizeof(Instr);
886 static Instr instr_at(byte* pc) { return *reinterpret_cast<Instr*>(pc); }
887 static void instr_at_put(byte* pc, Instr instr) {
888 *reinterpret_cast<Instr*>(pc) = instr;
890 Instr instr_at(int pos) { return *reinterpret_cast<Instr*>(buffer_ + pos); }
891 void instr_at_put(int pos, Instr instr)
    [all...]
constants-mips.h 173 typedef int32_t Instr;
581 extern const Instr kPopInstruction;
583 extern const Instr kPushInstruction;
585 extern const Instr kPushRegPattern;
587 extern const Instr kPopRegPattern;
588 extern const Instr kLwRegFpOffsetPattern;
589 extern const Instr kSwRegFpOffsetPattern;
590 extern const Instr kLwRegFpNegOffsetPattern;
591 extern const Instr kSwRegFpNegOffsetPattern;
593 extern const Instr kRtMask
    [all...]
assembler-mips.cc 216 Instr* pc = reinterpret_cast<Instr*>(pc_);
217 Instr* instr = reinterpret_cast<Instr*>(instructions); local
219 *(pc + i) = *(instr + i);
270 const Instr kPopInstruction = ADDIU | (kRegister_sp_Code << kRsShift)
273 const Instr kPushInstruction = ADDIU | (kRegister_sp_Code << kRsShift)
276 const Instr kPushRegPattern = SW | (kRegister_sp_Code << kRsShift)
279 const Instr kPopRegPattern = LW | (kRegister_sp_Code << kRsShift
762 Instr instr = instr_at(l.pos()); local
788 Instr instr = instr_at(fixup_pos); local
856 Instr instr = opcode | (rs.code() << kRsShift) | (rt.code() << kRtShift) local
869 Instr instr = opcode | (rs.code() << kRsShift) | (rt.code() << kRtShift) local
882 Instr instr = opcode | fmt | (ft.code() << kFtShift) | (fs.code() << kFsShift) local
895 Instr instr = opcode | (fr.code() << kFrShift) | (ft.code() << kFtShift) local
908 Instr instr = opcode | fmt | (rt.code() << kRtShift) local
920 Instr instr = local
933 Instr instr = opcode | (rs.code() << kRsShift) | (rt.code() << kRtShift) local
944 Instr instr = opcode | (rs.code() << kRsShift) | SF | (j & kImm16Mask); local
954 Instr instr = opcode | (rs.code() << kRsShift) | (ft.code() << kFtShift) local
964 Instr instr = opcode | address; local
1329 Instr instr = SPECIAL | (1 << kRsShift) | (rt.code() << kRtShift) local
1339 Instr instr = SPECIAL | (rs.code() << kRsShift) | (rt.code() << kRtShift) local
1498 Instr instr = SPECIAL | TGE | rs.code() << kRsShift local
1506 Instr instr = SPECIAL | TGEU | rs.code() << kRsShift local
1514 Instr instr = local
1522 Instr instr = local
1531 Instr instr = local
1539 Instr instr = local
1879 Instr instr = COP1 | fmt | ft.code() << 16 | fs.code() << kFsShift local
1896 Instr instr = COP1 | BC1 | cc << 18 | 0 << 16 | (offset & kImm16Mask); local
1903 Instr instr = COP1 | BC1 | cc << 18 | 1 << 16 | (offset & kImm16Mask); local
1932 Instr instr = instr_at(pc); local
    [all...]
assembler-mips-inl.h 323 Instr instr0 = Assembler::instr_at(pc_);
324 Instr instr1 = Assembler::instr_at(pc_ + 1 * Assembler::kInstrSize);
325 Instr instr2 = Assembler::instr_at(pc_ + 2 * Assembler::kInstrSize);
336 Instr current_instr = Assembler::instr_at(pc_);
413 void Assembler::emit(Instr x) {
417 *reinterpret_cast<Instr*>(pc_) = x;
  /external/v8/src/mips/
assembler-mips.h 593 static const int kInstrSize = sizeof(Instr);
952 static Instr instr_at(byte* pc) { return *reinterpret_cast<Instr*>(pc); }
953 static void instr_at_put(byte* pc, Instr instr) {
954 *reinterpret_cast<Instr*>(pc) = instr;
956 Instr instr_at(int pos) { return *reinterpret_cast<Instr*>(buffer_ + pos); }
957 void instr_at_put(int pos, Instr instr)
    [all...]
constants-mips.h 172 typedef int32_t Instr;
570 extern const Instr kPopInstruction;
572 extern const Instr kPushInstruction;
574 extern const Instr kPushRegPattern;
576 extern const Instr kPopRegPattern;
577 extern const Instr kLwRegFpOffsetPattern;
578 extern const Instr kSwRegFpOffsetPattern;
579 extern const Instr kLwRegFpNegOffsetPattern;
580 extern const Instr kSwRegFpNegOffsetPattern;
582 extern const Instr kRtMask
    [all...]
assembler-mips.cc 190 Instr* pc = reinterpret_cast<Instr*>(pc_);
191 Instr* instr = reinterpret_cast<Instr*>(instructions); local
193 *(pc + i) = *(instr + i);
240 const Instr kPopInstruction = ADDIU | (kRegister_sp_Code << kRsShift)
243 const Instr kPushInstruction = ADDIU | (kRegister_sp_Code << kRsShift)
246 const Instr kPushRegPattern = SW | (kRegister_sp_Code << kRsShift)
249 const Instr kPopRegPattern = LW | (kRegister_sp_Code << kRsShift
768 Instr instr = instr_at(l.pos()); local
794 Instr instr = instr_at(fixup_pos); local
860 Instr instr = opcode | (rs.code() << kRsShift) | (rt.code() << kRtShift) local
873 Instr instr = opcode | (rs.code() << kRsShift) | (rt.code() << kRtShift) local
887 Instr instr = opcode | fmt | (ft.code() << kFtShift) | (fs.code() << kFsShift) local
901 Instr instr = opcode | fmt | (rt.code() << kRtShift) local
914 Instr instr = local
927 Instr instr = opcode | (rs.code() << kRsShift) | (rt.code() << kRtShift) local
938 Instr instr = opcode | (rs.code() << kRsShift) | SF | (j & kImm16Mask); local
949 Instr instr = opcode | (rs.code() << kRsShift) | (ft.code() << kFtShift) local
959 Instr instr = opcode | address; local
1322 Instr instr = SPECIAL | (1 << kRsShift) | (rt.code() << kRtShift) local
1332 Instr instr = SPECIAL | (rs.code() << kRsShift) | (rt.code() << kRtShift) local
1491 Instr instr = SPECIAL | TGE | rs.code() << kRsShift local
1499 Instr instr = SPECIAL | TGEU | rs.code() << kRsShift local
1507 Instr instr = local
1515 Instr instr = local
1524 Instr instr = local
1532 Instr instr = local
1865 Instr instr = COP1 | fmt | ft.code() << 16 | fs.code() << kFsShift local
1884 Instr instr = COP1 | BC1 | cc << 18 | 0 << 16 | (offset & kImm16Mask); local
1892 Instr instr = COP1 | BC1 | cc << 18 | 1 << 16 | (offset & kImm16Mask); local
1921 Instr instr = instr_at(pc); local
    [all...]
assembler-mips-inl.h 275 Instr instr0 = Assembler::instr_at(pc_);
276 Instr instr1 = Assembler::instr_at(pc_ + 1 * Assembler::kInstrSize);
277 Instr instr2 = Assembler::instr_at(pc_ + 2 * Assembler::kInstrSize);
288 Instr current_instr = Assembler::instr_at(pc_);
361 void Assembler::emit(Instr x) {
365 *reinterpret_cast<Instr*>(pc_) = x;
  /external/llvm/lib/Transforms/Utils/
BypassSlowDivision.cpp 84 Instruction *Instr = J;
85 Value *Dividend = Instr->getOperand(0);
86 Value *Divisor = Instr->getOperand(1);
141 PHINode *QuoPhi = SuccessorBuilder.CreatePHI(Instr->getType(), 2);
144 PHINode *RemPhi = SuccessorBuilder.CreatePHI(Instr->getType(), 2);
148 // Replace Instr with appropriate phi node
150 Instr->replaceAllUsesWith(QuoPhi);
152 Instr->replaceAllUsesWith(RemPhi);
153 Instr->eraseFromParent();
192 Instruction *Instr = J
    [all...]
  /external/llvm/lib/Target/R600/
R600OptimizeVectorRegisters.cpp 59 MachineInstr *Instr;
62 RegSeqInfo(MachineRegisterInfo &MRI, MachineInstr *MI) : Instr(MI) {
64 for (unsigned i = 1, e = Instr->getNumOperands(); i < e; i+=2) {
65 MachineOperand &MO = Instr->getOperand(i);
66 unsigned Chan = Instr->getOperand(i + 1).getImm();
76 return RSI.Instr == Instr;
176 unsigned Reg = RSI->Instr->getOperand(0).getReg();
177 MachineBasicBlock::iterator Pos = RSI->Instr;
181 unsigned SrcVec = BaseRSI->Instr->getOperand(0).getReg()
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/des/times/
aix.cc 6 Data/Instr Cache : 16 K
  /external/openssl/crypto/des/times/
aix.cc 6 Data/Instr Cache : 16 K
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 254 MachineInstr *Instr; // Alternatively, a MachineInstr.
312 : Node(node), Instr(0), OrigNode(0), SchedClass(0), NodeNum(nodenum),
325 SUnit(MachineInstr *instr, unsigned nodenum)
326 : Node(0), Instr(instr), OrigNode(0), SchedClass(0), NodeNum(nodenum),
339 : Node(0), Instr(0), OrigNode(0), SchedClass(0), NodeNum(BoundaryID),
362 assert(!Instr && "Setting SDNode of SUnit with MachineInstr!");
369 assert(!Instr && "Reading SDNode of SUnit with MachineInstr!");
375 bool isInstr() const { return Instr; }
381 Instr = MI
    [all...]
  /art/compiler/utils/arm/
constants_arm.h 39 // General constants are in an anonymous enum in class Instr.
220 // The class Instr enables access to individual fields defined in the ARM
227 // Instr* instr = Instr::At(ptr);
228 // int type = instr->TypeField();
229 // return ((type == 0) || (type == 1)) && instr->HasS();
232 class Instr {
436 // to allocate or create instances of class Instr.
437 // Use the At(pc) function to create references to Instr
    [all...]

Completed in 406 milliseconds

1 2 3