Home
last modified time | relevance | path

Searched refs:funct (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Target/Mips/
H A DMicroMipsInstrFormats.td67 let Inst{0} = funct;
77 let Inst{15-10} = funct;
90 let Inst{9-6} = funct;
106 let Inst{0} = funct;
185 let Inst{15-10} = funct;
217 let Inst{9-5} = funct;
307 let Inst{9-0} = funct;
357 let Inst{15-6} = funct;
373 let Inst{9-0} = funct;
417 let Inst{11-9} = funct;
[all …]
H A DMicroMips32r6InstrFormats.td112 let Inst{3-0} = funct;
125 let Inst{11-6} = funct;
138 let Inst{15-12} = funct;
154 let Inst{9-0} = funct;
206 let Inst{20-19} = funct;
218 let Inst{20-16} = funct;
234 let Inst{9-0} = funct;
257 let Inst{15-6} = funct;
310 let Inst{15-6} = funct;
451 let Inst{15-6} = funct;
[all …]
H A DMipsInstrFormats.td159 bits<6> funct;
162 let funct = _funct;
168 let Inst{5-0} = funct;
228 let Inst{5-0} = funct;
257 let Inst{5-0} = funct;
273 let Inst{5-0} = funct;
297 let Inst{20-16} = funct;
336 let Inst{5-0} = funct;
347 let Inst{5-0} = funct;
615 let Inst{5-0} = funct;
[all …]
H A DMips16InstrFormats.td140 bits<5> funct;
143 let funct = _funct;
147 let Inst{4-0} = funct;
155 bits<5> funct;
158 let funct = 0b00101;
173 bits<5> funct;
176 let funct = _funct;
192 bits<5> funct;
195 let funct = _funct;
590 bits<3> funct;
[all …]
H A DMips32r6InstrFormats.td230 let Inst{5-0} = funct;
245 let Inst{5-0} = funct;
364 let Inst{5-0} = funct;
386 let Inst{31-26} = funct.Value;
401 let Inst{31-26} = funct.Value;
416 let Inst{31-26} = funct.Value;
428 let Inst{31-26} = funct;
433 class JMP_IDX_COMPACT_FM<bits<6> funct> : MipsR6Inst {
439 let Inst{31-26} = funct;
445 class BRANCH_OFF26_FM<bits<6> funct> : MipsR6Inst {
[all …]
H A DMicroMipsDSPInstrFormats.td137 class POOL32A_1RIMM5AC_FMT<string opstr, bits<8> funct> : MMDSPInst<opstr> {
146 let Inst{13-6} = funct;
162 class POOL32A_1RMEMB0_FMT<string opstr, bits<10> funct> : MMDSPInst<opstr> {
172 let Inst{9-0} = funct;
175 class POOL32A_1RAC_FMT<string instr_asm, bits<8> funct> : MMDSPInst<instr_asm> {
183 let Inst{13-6} = funct;
H A DMipsDSPInstrFormats.td238 class MULT_FMT<bits<6> opcode, bits<6> funct> : DSPInst {
250 let Inst{5-0} = funct;
254 class MFHI_FMT<bits<6> funct> : DSPInst {
264 let Inst{5-0} = funct;
268 class MTHI_FMT<bits<6> funct> : DSPInst {
277 let Inst{5-0} = funct;
/llvm-project-15.0.7/llvm/test/CodeGen/MSP430/
H A D2009-05-19-DoubleSplit.ll6 %call = tail call i16 @funct(double %add) nounwind
10 declare i16 @funct(double)
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Daccess.cpp82 template<typename T> friend void funct(T);
98 void funct(T) in funct() function
103 template void funct<int>(int);
/llvm-project-15.0.7/lldb/source/DataFormatters/
H A DFormattersHelpers.cpp77 CXXFunctionSummaryFormat::Callback funct, const char *description, in AddCXXSummary() argument
80 new CXXFunctionSummaryFormat(flags, funct, description)); in AddCXXSummary()
/llvm-project-15.0.7/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp1692 llvm::Function *funct = NULL; in createStandardUtilityFunctions() local
1813 funct = createFunction(module, in createStandardUtilityFunctions()
1822 funct->setDoesNotReturn(); in createStandardUtilityFunctions()
1833 funct = createFunction(module, in createStandardUtilityFunctions()
1842 funct->setDoesNotReturn(); in createStandardUtilityFunctions()
/llvm-project-15.0.7/lldb/include/lldb/DataFormatters/
H A DFormattersHelpers.h41 CXXFunctionSummaryFormat::Callback funct,
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectCommands.cpp1079 std::string funct, std::string help, in CommandObjectPythonFunction() argument
1081 : CommandObjectRaw(interpreter, name), m_function_name(funct), in CommandObjectPythonFunction()