HomeSort by: relevance | last modified time | path
    Searched refs:LLC (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
ToolRunner.h 32 class LLC;
86 static LLC *createLLC(const char *Argv0, std::string &Message,
144 // LLC Implementation of AbstractIntepreter interface
146 class LLC : public AbstractInterpreter {
147 std::string LLCPath; // The path to the LLC executable.
148 std::vector<std::string> ToolArgs; // Extra args to pass to LLC.
153 LLC(const std::string &llcPath, CC *cc, const std::vector<std::string> *Args,
161 ~LLC() override { delete cc; }
ToolRunner.cpp 431 // LLC Implementation of AbstractIntepreter interface
433 Expected<CC::FileType> LLC::OutputCode(const std::string &Bitcode,
436 const char *Suffix = (UseIntegratedAssembler ? ".llc.o" : ".llc.s");
449 // Add any extra LLC args.
460 outs() << (UseIntegratedAssembler ? "<llc-ia>" : "<llc>");
471 Error LLC::compileProgram(const std::string &Bitcode, unsigned Timeout,
482 Expected<int> LLC::ExecuteProgram(const std::string &Bitcode,
500 // Assuming LLC worked, compile the result with CC and run it
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
MachODumper.cpp 730 MachO::linkedit_data_command LLC = Obj->getLinkeditDataLoadCommand(Load);
732 W.printNumber("Data offset", LLC.dataoff);
733 W.printNumber("Data size", LLC.datasize);
735 unsigned NumRegions = LLC.datasize / sizeof(MachO::data_in_code_entry);
738 LLC.dataoff, i);
  /src/external/bsd/libpcap/dist/
grammar.y.in 89 #include "llc.h"
396 %token LANE LLC METAC BCC SC ILMIC OAMF4EC OAMF4SC
777 pllc: LLC { CHECK_PTR_VAL(($$ = gen_llc(cstate))); }
778 | LLC ID { CHECK_PTR_VAL($2);
794 bpf_set_error(cstate, "unknown LLC type name \"%s\"", $2);
802 | LLC PF_RNR { CHECK_PTR_VAL(($$ = gen_llc_s_subtype(cstate, LLC_RNR))); }
scanner.l 355 llc return LLC;
  /src/external/apache2/llvm/dist/llvm/utils/
update_mir_test_checks.py 14 If there are multiple llc commands in a test, the full set of checks
59 class LLC:
112 if not llc_cmd.startswith('llc '):
113 common.warn('Skipping non-llc RUN line: {}'.format(l), test_file=test)
129 cmd_args = llc_cmd[len('llc'):].strip()
309 log('Extracted LLC cmd: llc {}'.format(llc_args), args.verbose)
312 raw_tool_output = args.llc(llc_args, test)
416 parser.add_argument('--llc-binary', dest='llc', default='llc', type=LLC
    [all...]
  /src/sys/net/
if_ethersubr.c 373 * llc header.
376 struct llc llc; local
378 M_PREPEND(m, sizeof(struct llc), M_DONTWAIT);
385 llc.llc_dsap = llc.llc_ssap = LLC_SNAP_LSAP;
386 llc.llc_control = LLC_UI;
387 memcpy(llc.llc_snap_org_code, at_org_code,
388 sizeof(llc.llc_snap_org_code));
389 llc.llc_snap_ether_type = htons(ETHERTYPE_ATALK)
390 memcpy(mtod(m, void *), &llc, sizeof(struct llc)); local
534 struct llc *llc = (struct llc *)(eh + 1); local
    [all...]
  /src/external/bsd/nsd/dist/
Makefile.in 65 LLC = @LLC@
453 $(LLC) -march=bpf -filetype=obj -o $@ ${@:.o=.ll}
458 $(LLC) -march=bpf -filetype=obj -o $@ ${@:.o=.ll}
configure 667 LLC
822 LLC
1551 LLC location of LLVM static compiler (only needed for xdp)
12178 # Using ARG_VAR here because AC_PROG_xxx doesn't exist for CLANG and LLC
12225 # Extract the first word of "llc", so it can be a program name with args.
12226 set dummy llc; ac_word=$2
12233 e) if test -n "$LLC"; then
12234 ac_cv_prog_LLC="$LLC" # Let the user override the test.
12247 ac_cv_prog_LLC="llc"
12258 LLC=$ac_cv_prog_LL
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-nm/
llvm-nm.cpp 1611 MachO::linkedit_data_command LLC =
1614 MachO.ReadULEB128s(LLC.dataoff, FoundFns);
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZInstrInfo.cpp 1368 expandRXYPseudo(MI, SystemZ::LLC, SystemZ::LLCH);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
MachODump.cpp 311 MachO::linkedit_data_command LLC =
314 MachOObj->ReadULEB128s(LLC.dataoff, FoundFns);

Completed in 44 milliseconds