Searched refs:instr (Results 101 - 125 of 242) sorted by relevance

12345678910

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dr300_fragprog.c91 const char *instr; local
97 instr = "TEX";
100 instr = "KIL";
103 instr = "TXP";
106 instr = "TXB";
109 instr = "UNKNOWN";
114 instr,
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dr300_fragprog.c91 const char *instr; local
97 instr = "TEX";
100 instr = "KIL";
103 instr = "TXP";
106 instr = "TXB";
109 instr = "UNKNOWN";
114 instr,
/external/chromium_org/v8/src/compiler/arm64/
H A Dcode-generator-arm64.cc24 Arm64OperandConverter(CodeGenerator* gen, Instruction* instr) argument
25 : InstructionOperandConverter(gen, instr) {}
119 if (instr->InputAt(1)->IsRegister()) { \
130 void CodeGenerator::AssembleArchInstruction(Instruction* instr) { argument
131 Arm64OperandConverter i(this, instr);
132 InstructionCode opcode = instr->opcode();
136 if (instr->InputAt(0)->IsImmediate()) {
144 AddSafepointAndDeopt(instr);
160 AddSafepointAndDeopt(instr);
240 // TODO(dcarney): use mvn instr
470 AssembleArchBranch(Instruction* instr, FlagsCondition condition) argument
544 AssembleArchBoolean(Instruction* instr, FlagsCondition condition) argument
[all...]
/external/chromium_org/ppapi/generators/
H A Didl_c_proto.py750 def CleanString(instr):
751 instr = instr.strip()
752 instr = instr.split()
753 return ' '.join(instr)
762 instr = node.GetOneOf('Comment')
763 if not instr: continue
764 instr.Dump()
765 instr
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
H A DR600MCCodeEmitter.cpp500 enum FCInstr instr; local
503 instr = FC_BREAK;
506 instr = FC_BREAK_NZ;
509 instr = FC_BREAK_NZ_INT;
512 instr = FC_BREAK_Z_INT;
516 instr = FC_CONTINUE;
519 instr = FC_IF;
521 instr = FC_IF_INT;
527 instr = FC_ELSE;
530 instr
[all...]
/external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
H A DR600MCCodeEmitter.cpp500 enum FCInstr instr; local
503 instr = FC_BREAK;
506 instr = FC_BREAK_NZ;
509 instr = FC_BREAK_NZ_INT;
512 instr = FC_BREAK_Z_INT;
516 instr = FC_CONTINUE;
519 instr = FC_IF;
521 instr = FC_IF_INT;
527 instr = FC_ELSE;
530 instr
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_type.c413 LLVMValueRef instr; local
414 instr = LLVMGetFirstInstruction(block);
415 while (instr) {
418 instr = LLVMGetNextInstruction(instr);
H A Dlp_bld_struct.c188 LLVMValueRef instr; local
190 instr = LLVMBuildStore(builder, value, element_ptr);
191 lp_set_store_alignment(instr, alignment);
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_type.c413 LLVMValueRef instr; local
414 instr = LLVMGetFirstInstruction(block);
415 while (instr) {
418 instr = LLVMGetNextInstruction(instr);
H A Dlp_bld_struct.c188 LLVMValueRef instr; local
190 instr = LLVMBuildStore(builder, value, element_ptr);
191 lp_set_store_alignment(instr, alignment);
/external/elfutils/0.153/libcpu/
H A Di386_parse.c266 struct instruction *instr, int n);
688 "masks", "mask", "instrs", "instr", "bitfieldopt", "bytes", "byte",
2483 struct instruction *instr, int n)
2500 if (instr->operands[n].str != NULL)
2505 instr->operands[n].str = runp->str;
2548 if (instr->operands[n].off1 == 0)
2549 instr->operands[n].off1 = bitoff;
2550 else if (instr->operands[n].off2 == 0)
2551 instr->operands[n].off2 = bitoff;
2552 else if (instr
2482 fillin_arg(struct bitvalue *bytes, struct argname *name, struct instruction *instr, int n) argument
2903 struct instruction *instr; local
[all...]
/external/chromium_org/v8/src/
H A Dhydrogen-gvn.h69 SideEffects ComputeChanges(HInstruction* instr);
70 SideEffects ComputeDependsOn(HInstruction* instr);
131 bool ShouldMove(HInstruction* instr, HBasicBlock* loop_header);
H A Dhydrogen-escape-analysis.h31 void AnalyzeDataFlow(HInstruction* instr);
/external/emma/core/java12/com/vladium/emma/report/
H A DClassItem.java155 final int instr = mbsizes [block];
157 data [1] += instr;
161 data [3] += instr;
/external/valgrind/main/VEX/priv/
H A Dhost_generic_regs.c203 void addHInstr ( HInstrArray* ha, HInstr* instr )
207 ha->arr[ha->arr_used] = instr;
216 addHInstr(ha, instr);
/external/chromium_org/v8/src/compiler/
H A Dcode-generator-impl.h28 InstructionOperandConverter(CodeGenerator* gen, Instruction* instr) argument
29 : gen_(gen), instr_(instr) {}
H A Dinstruction.h541 OStream& operator<<(OStream& os, const Instruction& instr);
573 static GapInstruction* cast(Instruction* instr) {
574 DCHECK(instr->IsGapMoves());
575 return static_cast<GapInstruction*>(instr);
578 static const GapInstruction* cast(const Instruction* instr) {
579 DCHECK(instr->IsGapMoves());
580 return static_cast<const GapInstruction*>(instr);
592 friend OStream& operator<<(OStream& os, const Instruction& instr);
610 static BlockStartInstruction* cast(Instruction* instr) {
611 DCHECK(instr
[all...]
/external/chromium_org/v8/src/compiler/arm/
H A Dcode-generator-arm.cc27 ArmOperandConverter(CodeGenerator* gen, Instruction* instr) argument
28 : InstructionOperandConverter(gen, instr) {}
135 void CodeGenerator::AssembleArchInstruction(Instruction* instr) { argument
136 ArmOperandConverter i(this, instr);
138 switch (ArchOpcodeField::decode(instr->opcode())) {
141 if (instr->InputAt(0)->IsImmediate()) {
149 AddSafepointAndDeopt(instr);
164 AddSafepointAndDeopt(instr);
444 void CodeGenerator::AssembleArchBranch(Instruction* instr, argument
446 ArmOperandConverter i(this, instr);
518 AssembleArchBoolean(Instruction* instr, FlagsCondition condition) argument
[all...]
/external/emma/core/java12/com/vladium/emma/data/
H A DCoverageOptionsFactory.java13 import com.vladium.emma.instr.InstrProcessor;
/external/llvm/include/llvm/MC/
H A DMCDisassembler.h65 /// @param instr - An MCInst to populate with the contents of the
79 virtual DecodeStatus getInstruction(MCInst& instr,
/external/chromium_org/v8/src/x87/
H A Dlithium-x87.h179 static L##type* cast(LInstruction* instr) { \
180 DCHECK(instr->Is##type()); \
181 return reinterpret_cast<L##type*>(instr); \
342 static LGap* cast(LInstruction* instr) { argument
343 DCHECK(instr->IsGap());
344 return reinterpret_cast<LGap*>(instr);
2783 LInstruction* DoMathFloor(HUnaryMathOperation* instr);
2784 LInstruction* DoMathRound(HUnaryMathOperation* instr);
2785 LInstruction* DoMathFround(HUnaryMathOperation* instr);
2786 LInstruction* DoMathAbs(HUnaryMathOperation* instr);
[all...]
/external/chromium_org/v8/src/ia32/
H A Dlithium-ia32.h178 static L##type* cast(LInstruction* instr) { \
179 DCHECK(instr->Is##type()); \
180 return reinterpret_cast<L##type*>(instr); \
337 static LGap* cast(LInstruction* instr) { argument
338 DCHECK(instr->IsGap());
339 return reinterpret_cast<LGap*>(instr);
2767 LInstruction* DoMathFloor(HUnaryMathOperation* instr);
2768 LInstruction* DoMathRound(HUnaryMathOperation* instr);
2769 LInstruction* DoMathFround(HUnaryMathOperation* instr);
2770 LInstruction* DoMathAbs(HUnaryMathOperation* instr);
[all...]
/external/chromium_org/v8/src/arm64/
H A Dsimulator-arm64.h282 void DoRuntimeCall(Instruction* instr);
307 virtual void Decode(Instruction* instr) {
308 decoder_->Decode(instr);
320 #define DECLARE(A) void Visit##A(Instruction* instr);
653 void AddSubHelper(Instruction* instr, T op2);
660 void AddSubWithCarry(Instruction* instr);
662 void LogicalHelper(Instruction* instr, T op2);
664 void ConditionalCompareHelper(Instruction* instr, T op2);
665 void LoadStoreHelper(Instruction* instr,
668 void LoadStorePairHelper(Instruction* instr, AddrMod
[all...]
/external/chromium_org/v8/src/arm/
H A Dlithium-arm.h177 static L##type* cast(LInstruction* instr) { \
178 DCHECK(instr->Is##type()); \
179 return reinterpret_cast<L##type*>(instr); \
337 static LGap* cast(LInstruction* instr) { argument
338 DCHECK(instr->IsGap());
339 return reinterpret_cast<LGap*>(instr);
2777 LInstruction* DoRSub(HSub* instr);
2781 LInstruction* DoMathFloor(HUnaryMathOperation* instr);
2782 LInstruction* DoMathRound(HUnaryMathOperation* instr);
2783 LInstruction* DoMathFround(HUnaryMathOperation* instr);
[all...]
/external/chromium_org/v8/src/mips/
H A Dlithium-mips.h174 static L##type* cast(LInstruction* instr) { \
175 DCHECK(instr->Is##type()); \
176 return reinterpret_cast<L##type*>(instr); \
334 static LGap* cast(LInstruction* instr) { argument
335 DCHECK(instr->IsGap());
336 return reinterpret_cast<LGap*>(instr);
2739 LInstruction* DoMathFloor(HUnaryMathOperation* instr);
2740 LInstruction* DoMathRound(HUnaryMathOperation* instr);
2741 LInstruction* DoMathFround(HUnaryMathOperation* instr);
2742 LInstruction* DoMathAbs(HUnaryMathOperation* instr);
[all...]

Completed in 568 milliseconds

12345678910