HomeSort by relevance Sort by last modified time
    Searched full:assembler (Results 276 - 300 of 1556) sorted by null

<<11121314151617181920>>

  /external/chromium_org/v8/test/cctest/
test-assembler-arm.cc 31 #include "src/arm/assembler-arm-inl.h"
54 Assembler assm(isolate, NULL, 0);
79 Assembler assm(isolate, NULL, 0);
115 Assembler assm(isolate, NULL, 0);
167 Assembler assm(isolate, NULL, 0);
234 Assembler assm(isolate, NULL, 0);
360 Assembler assm(isolate, NULL, 0);
395 Assembler assm(isolate, NULL, 0);
436 Assembler assm(isolate, NULL, 0);
640 Assembler assm(isolate, NULL, 0)
    [all...]
test-regexp.cc 38 #include "src/regexp-macro-assembler.h"
39 #include "src/regexp-macro-assembler-irregexp.h"
45 #include "src/macro-assembler.h"
47 #include "src/arm/assembler-arm.h" // NOLINT
48 #include "src/arm/macro-assembler-arm.h"
49 #include "src/arm/regexp-macro-assembler-arm.h"
52 #include "src/arm64/assembler-arm64.h"
53 #include "src/arm64/macro-assembler-arm64.h"
54 #include "src/arm64/regexp-macro-assembler-arm64.h"
57 #include "src/mips/assembler-mips.h
    [all...]
  /external/chromium_org/v8/src/mips/
assembler-mips.h 41 #include "src/assembler.h"
393 friend class Assembler;
420 friend class Assembler;
424 class Assembler : public AssemblerBase {
426 // Create an assembler. Instructions and relocation information are emitted
431 // If the provided buffer is NULL, the assembler allocates and grows its own
433 // owned by the assembler and deallocated upon destruction of the assembler.
435 // If the provided buffer is not NULL, the assembler uses the provided buffer
438 // upon destruction of the assembler
    [all...]
deoptimizer-mips.cc 19 return kCallInstructionSizeInWords * Assembler::kInstrSize;
62 int call_size_in_words = call_size_in_bytes / Assembler::kInstrSize;
63 DCHECK(call_size_in_bytes % Assembler::kInstrSize == 0);
320 const int Deoptimizer::table_entry_size_ = 2 * Assembler::kInstrSize;
323 Assembler::BlockTrampolinePoolScope block_trampoline_pool(masm());
330 (table_entry_size_ / Assembler::kInstrSize);
  /external/chromium_org/v8/src/mips64/
assembler-mips64.h 40 #include "src/assembler.h"
383 friend class Assembler;
410 friend class Assembler;
414 class Assembler : public AssemblerBase {
416 // Create an assembler. Instructions and relocation information are emitted
421 // If the provided buffer is NULL, the assembler allocates and grows its own
423 // owned by the assembler and deallocated upon destruction of the assembler.
425 // If the provided buffer is not NULL, the assembler uses the provided buffer
428 // upon destruction of the assembler
    [all...]
  /external/clang/docs/
ReleaseNotes.rst 72 The integrated assembler is now turned on by default on ARM (and Thumb),
81 back the call to GNU assembler.
83 In order to provide better diagnostics, the integrated assembler validates
84 inline assembly when the integrated assembler is enabled. Because this is
86 and `fno-integrated-as` flags which enable and disable the integrated assembler
DriverInternals.rst 44 assembler; something we hope to add to LLVM in the future.
179 $ clang -ccc-print-phases -x c t.c -x assembler t.s
182 2: compiler, {1}, assembler
183 3: assembler, {2}, object
184 4: input, "t.s", assembler
185 5: assembler, {4}, object
202 2: compiler, {1}, assembler
203 3: assembler, {2}, object
209 9: compiler, {8}, assembler
210 10: assembler, {9}, objec
    [all...]
  /external/llvm/lib/MC/
MCAssembler.cpp 1 //===- lib/MC/MCAssembler.cpp - Assembler Backend Implementation ----------===//
34 #define DEBUG_TYPE "assembler"
38 STATISTIC(EmittedFragments, "Number of emitted assembler fragments - total");
40 "Number of emitted assembler fragments - relaxable");
42 "Number of emitted assembler fragments - data");
44 "Number of emitted assembler fragments - compact encoded inst");
46 "Number of emitted assembler fragments - align");
48 "Number of emitted assembler fragments - fill");
50 "Number of emitted assembler fragments - org");
54 STATISTIC(RelaxationSteps, "Number of assembler layout and relaxation steps")
    [all...]
  /external/clang/docs/tools/
clang.pod 33 execution of other tools such as the compiler, assembler and linker. Typically
59 Clang also supports the use of an integrated assembler, in which the code
61 the ".s" file and of calling the target assembler.
63 =item B<Assembler>
65 This stage runs the target assembler to translate the output of the compiler
109 Run all of the above, plus the assembler, generating a target ".o" object file.
396 Pass the comma separated arguments in I<args> to the assembler.
412 Pass I<arg> to the assembler.
449 assembler. Whether the integrated assembler is on by default is targe
    [all...]
  /bionic/libc/tools/
gensyscalls.py 3 # This tool is used to generate the assembler system call stubs,
57 # ARM assembler templates for each syscall stub
94 # Arm64 assembler templates for each syscall stub
111 # MIPS assembler templates for each syscall stub
133 # MIPS64 assembler templates for each syscall stub
161 # x86 assembler templates for each syscall stub
185 # x86_64 assembler templates for each syscall stub
  /external/chromium_org/v8/src/arm64/
debug-arm64.cc 42 STATIC_ASSERT(Assembler::kJSRetSequenceInstructions >= 5);
65 Assembler::kJSRetSequenceInstructions);
101 STATIC_ASSERT(Assembler::kDebugBreakSlotInstructions >= 4);
123 Assembler::kDebugBreakSlotInstructions);
324 InstructionAccurateScope scope(masm, Assembler::kDebugBreakSlotInstructions);
327 for (int i = 0; i < Assembler::kDebugBreakSlotInstructions; i++) {
328 __ nop(Assembler::DEBUG_BREAK_NOP);
  /external/llvm/include/llvm/MC/
MCAssembler.h 74 /// @name Assembler Backend Data
77 // FIXME: This could all be kept private to the assembler implementation.
288 /// relaxed during the assembler layout and relaxation stage.
298 /// in the assembler are not seen here.
602 /// @name Assembler Backend Data
605 // FIXME: This could all be kept private to the assembler implementation.
878 /// The map of sections to their associated assembler backend data.
883 /// The map of symbols to their associated assembler backend data.
907 /// \brief The bundle alignment size currently set in the assembler.
919 // Access to the flags is necessary in cases where assembler directives affec
    [all...]
MCAsmInfo.h 116 /// This indicates the comment character used by the assembler. Defaults to
132 /// assembler but be removed by the linker. This is 'l' on Darwin, currently
142 /// These are assembly directives that tells the assembler to interpret the
149 /// Which dialect of an assembler variant to use. Defaults to 0
152 /// This is true if the assembler allows @ characters in symbol names.
226 /// True if the assembler supports the .set directive. Defaults to true.
229 /// False if the assembler requires that we use
331 //===--- Integrated Assembler State ----------------------------------===//
333 /// Should we use the integrated assembler?
334 /// The integrated assembler should be enabled by default (by th
    [all...]
MCExpr.h 31 /// MCExpr - Base class for the full range of assembler expressions which are
80 /// @param Layout - The assembler layout object to use for evaluating symbol
94 /// @param Layout - The assembler layout object to use for evaluating values.
150 /// assembler variable (defined constant), or constitute an implicit definition
326 /// MCUnaryExpr - Unary assembler expressions.
379 /// MCBinaryExpr - Binary assembler expressions.
  /external/chromium_org/v8/src/ic/mips/
ic-mips.cc     [all...]
  /external/chromium_org/v8/src/ic/mips64/
ic-mips64.cc     [all...]
  /external/chromium_org/v8/src/ia32/
assembler-ia32.h 35 // A light-weight IA32 Assembler.
304 friend class Assembler;
402 friend class Assembler;
461 class Assembler : public AssemblerBase {
475 // Create an assembler. Instructions and relocation information are emitted
480 // If the provided buffer is NULL, the assembler allocates and grows its own
482 // owned by the assembler and deallocated upon destruction of the assembler.
484 // If the provided buffer is not NULL, the assembler uses the provided buffer
487 // upon destruction of the assembler
    [all...]
  /external/chromium_org/v8/src/x87/
assembler-x87.h 35 // A light-weight IA32 Assembler.
296 friend class Assembler;
391 friend class Assembler;
450 class Assembler : public AssemblerBase {
464 // Create an assembler. Instructions and relocation information are emitted
469 // If the provided buffer is NULL, the assembler allocates and grows its own
471 // owned by the assembler and deallocated upon destruction of the assembler.
473 // If the provided buffer is not NULL, the assembler uses the provided buffer
476 // upon destruction of the assembler
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/info/
as.info 5 * As: (as). The GNU assembler.
6 * Gas: (as). The GNU assembler.
9 This file documents the GNU Assembler "as".
28 This file is a user guide to the GNU assembler `as' (GNU Binutils)
43 * Pseudo Ops:: Assembler Directives
350 Generate debugging information for each assembler source line
355 Generate stabs debugging information for each assembler line. This
356 may help debugging assembler code, if the debugger can handle it.
359 Generate stabs debugging information for each assembler line, with
362 may help debugging assembler code. Currently the only GN
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/man/man1/
x86_64-w64-mingw32-dlltool.1 145 [\fB\-S\fR|\fB\-\-as\fR \fIpath-to-assembler\fR] [\fB\-f\fR|\fB\-\-as\-flags\fR \fIoptions\fR]
214 exports file by creating temporary files containing assembler statements
216 used to specify the path to the assembler that dlltool will use,
218 assembler. The \fB\-n\fR can be used to prevent dlltool from deleting
219 these temporary assembler files when it is done, and if \fB\-n\fR is
317 Specifies the path, including the filename, of the assembler to be used
326 assembler when building the exports file. This option will work even if
330 pass multiple options to the assembler they should be enclosed in
470 Makes \fBdlltool\fR preserve the temporary assembler files it used to
481 temporary assembler and object files. By default, the temp file prefi
    [all...]
  /external/chromium_org/v8/src/arm/
assembler-arm.h 37 // A light-weight ARM Assembler
47 #include "src/assembler.h"
532 int instructions_required(const Assembler* assembler, Instr instr = 0) const;
533 bool must_output_reloc_info(const Assembler* assembler) const;
552 friend class Assembler;
609 friend class Assembler;
653 ConstantPoolArray::LayoutSection AddEntry(Assembler* assm,
658 void Populate(Assembler* assm, ConstantPoolArray* constant_pool)
    [all...]
  /external/clang/tools/driver/
cc1as_main.cpp 1 //===-- cc1as_main.cpp - Clang Assembler ---------------------------------===//
11 // the direct interface to the LLVM MC based assembler.
65 /// \brief Helper class for representing a single invocation of the assembler.
121 /// @name Assembler Options
326 // FIXME: Assembler behavior can change with -static.
455 Opts->PrintHelp(llvm::outs(), "clang -cc1as", "Clang Integrated Assembler",
  /bionic/
HACKING.txt 53 # Every architecture needs a handful of machine-specific assembler files.
62 # Most architectures have a handful of optional assembler files
66 # The syscalls directories contain script-generated assembler files.
  /external/chromium_org/third_party/libjpeg_turbo/simd/
jcqnt3dn.asm 11 ; This file should be assembled with NASM (Netwide Assembler),
13 ; assembler (including Borland's Turbo Assembler).
jcqnts2i.asm 11 ; This file should be assembled with NASM (Netwide Assembler),
13 ; assembler (including Borland's Turbo Assembler).

Completed in 1884 milliseconds

<<11121314151617181920>>