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

1 2 3

  /external/v8/src/
regexp-macro-assembler-irregexp.cc 94 Emit(BC_POP_REGISTER, register_index);
103 Emit(BC_PUSH_REGISTER, register_index);
111 Emit(BC_SET_REGISTER_TO_CP, register_index);
128 Emit(BC_SET_CP_TO_REGISTER, register_index);
136 Emit(BC_SET_REGISTER_TO_SP, register_index);
144 Emit(BC_SET_SP_TO_REGISTER, register_index);
150 Emit(BC_SET_CURRENT_POSITION_FROM_END, by);
157 Emit(BC_SET_REGISTER, register_index);
165 Emit(BC_ADVANCE_REGISTER, register_index);
171 Emit(BC_POP_CP, 0)
    [all...]
regexp-macro-assembler-irregexp-inl.h 43 void RegExpMacroAssemblerIrregexp::Emit(uint32_t byte,
regexp-macro-assembler-irregexp.h 116 inline void Emit(uint32_t bc, uint32_t arg);
jsregexp.h 603 virtual void Emit(RegExpCompiler* compiler, Trace* trace) = 0;
780 virtual void Emit(RegExpCompiler* compiler, Trace* trace);
846 virtual void Emit(RegExpCompiler* compiler, Trace* trace);
    [all...]
jsregexp.cc 656 // at the point where they are needed by a recursive call to Emit(). If
657 // the node has already been code generated then the Emit() call will
659 // limit recursion it is possible for the Emit() function to put the node
698 // will emit code to bring the actual state into line with the virtual state.
    [all...]
safepoint-table.h 237 // Emit the safepoint table after the body. The number of bits per
239 void Emit(Assembler* assembler, int bits_per_entry);
  /external/llvm/utils/TableGen/
StringMatcher.h 44 void Emit(unsigned Indent = 0) const;
StringMatcher.cpp 39 /// same length and whose characters leading up to CharNo are the same, emit
82 // Emit code to break out if the prefix doesn't match.
101 // Otherwise, we have multiple possible things, emit a switch on the
122 /// Emit - Top level entry point.
124 void StringMatcher::Emit(unsigned Indent) const {
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 90 void Emit(uint32_t Val, unsigned NumBits) {
115 Emit((uint32_t)Val, NumBits);
117 Emit((uint32_t)Val, 32);
118 Emit((uint32_t)(Val >> 32), NumBits-32);
137 // Emit the bits with VBR encoding, NumBits-1 bits at a time.
139 Emit((Val & ((1 << (NumBits-1))-1)) | (1 << (NumBits-1)), NumBits);
143 Emit(Val, NumBits);
152 // Emit the bits with VBR encoding, NumBits-1 bits at a time.
154 Emit(((uint32_t)Val & ((1 << (NumBits-1))-1)) |
159 Emit((uint32_t)Val, NumBits)
    [all...]
  /external/clang/lib/CodeGen/
CGTemporaries.cpp 1 //===--- CGTemporaries.cpp - Emit LLVM Code for C++ temporaries -----------===//
24 void Emit(CodeGenFunction &CGF, Flags flags) {
CGObjCRuntime.cpp 152 void Emit(CodeGenFunction &CGF, Flags flags) {
208 // Emit the try body.
218 // Emit the handlers.
280 void Emit(CodeGenFunction &CGF, Flags flags) {
310 // Emit the body of the statement.
CGDecl.cpp 1 //===--- CGDecl.cpp - Emit LLVM Code for declarations ---------------------===//
10 // This contains code to emit Decl nodes as LLVM code.
133 // Don't emit it now, allow it to be emitted lazily on its first use.
271 // If this value has an initializer, emit it.
296 // Emit global variable debug descriptor for static vars.
317 void Emit(CodeGenFunction &CGF, Flags flags) {
336 void Emit(CodeGenFunction &CGF, Flags flags) {
360 void Emit(CodeGenFunction &CGF, Flags flags) {
371 void Emit(CodeGenFunction &CGF, Flags flags) {
390 void Emit(CodeGenFunction &CGF, Flags flags)
    [all...]
  /external/llvm/include/llvm/MC/
MCDwarf.h 213 static void Emit(MCStreamer *MCOS);
221 /// Utility function to emit the encoding to a streamer.
222 static void Emit(MCStreamer *MCOS,
283 static void Emit(MCStreamer &streamer, bool usingCFI,
MCWin64EH.h 88 static void Emit(MCStreamer &streamer);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 62 (* Emit 'then' value. *)
71 (* Emit 'else' value. *)
80 (* Emit merge block. *)
100 (* Emit the start code first, without 'variable' in scope. *)
127 (* Emit the body of the loop. This, like any other expr, can change the
132 (* Emit the step value. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
codegen.ml 43 * one. Emit a call to it. *)
80 (* Emit 'then' value. *)
89 (* Emit 'else' value. *)
98 (* Emit merge block. *)
118 (* Emit the start code first, without 'variable' in scope. *)
145 (* Emit the body of the loop. This, like any other expr, can change the
150 (* Emit the step value. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 41 (* Special case '=' because we don't want to emit the LHS as an
72 * one. Emit a call to it. *)
110 (* Emit 'then' value. *)
119 (* Emit 'else' value. *)
128 (* Emit merge block. *)
173 (* Emit the start code first, without 'variable' in scope. *)
198 (* Emit the body of the loop. This, like any other expr, can change the
203 (* Emit the step value. *)
246 (* Register all variables and emit their initializer. *)
248 (* Emit the initializer before adding the variable to scope, thi
    [all...]
  /external/clang/include/clang/Basic/
PartialDiagnostic.h 256 void Emit(const DiagnosticBuilder &DB) const {
336 PD.Emit(DB);
OnDiskHashTable.h 185 io::Offset Emit(raw_ostream &out) {
187 return Emit(out, InfoObj);
190 io::Offset Emit(raw_ostream &out, Info &InfoObj) {
193 // Emit the payload of the table.
215 // Emit the hashtable itself.
  /external/llvm/lib/MC/
MCObjectStreamer.cpp 116 // fragment pointer when we emit the next fragment.
166 // If this instruction doesn't need relaxation, just emit it as data.
173 // possible and emit it as data.
183 // Otherwise emit to a separate fragment.
208 MCDwarfLineAddr::Emit(this, LineDelta, Res);
251 MCDwarfFileTable::Emit(this);
MCStreamer.cpp 69 // emit the sequence to set the address
75 // emit the sequence for the LineDelta (from 1) and a zero address delta.
76 MCDwarfLineAddr::Emit(this, LineDelta, 0);
135 /// EmitFill - Emit NumBytes bytes worth of the value specified by
176 assert(!Symbol->isVariable() && "Cannot emit a variable symbol!");
177 assert(getCurrentSection() && "Cannot emit before setting section!");
623 MCDwarfFrameEmitter::Emit(*this, usingCFI, true);
626 MCDwarfFrameEmitter::Emit(*this, usingCFI, false);
633 MCWin64EHUnwindEmitter::Emit(*this);
  /external/v8/src/arm/
debug-arm.cc 68 patcher.Emit(Isolate::Current()->debug()->debug_break_return()->entry());
118 patcher.Emit(Isolate::Current()->debug()->debug_break_slot()->entry());
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 152 // Emit the finished record.
156 // Emit information about parameter attributes.
248 // Emit an entry count so the reader can reserve space.
317 // Emit the name if it is present.
343 // Emit the finished record.
382 // Emit top-level description of module, including target triple, inline asm,
386 // Emit the list of dependent libraries for the Module.
390 // Emit various pieces of data attached to a module.
401 // Emit information about sections and GC, computing how many there are. Also
443 // Emit abbrev for globals, now that we know # sections and max alignment
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 124 // Emit the finished record.
128 // Emit information about parameter attributes.
201 // Emit the finished record.
225 // Emit the finished record.
303 // Emit an entry count so the reader can reserve space.
382 // Emit the finished record.
423 // Emit top-level description of module, including target triple, inline asm,
427 // Emit the list of dependent libraries for the Module.
431 // Emit various pieces of data attached to a module.
442 // Emit information about sections and GC, computing how many there are. Als
    [all...]
  /external/llvm/include/llvm/ADT/
APFloat.h 261 /// @brief Used by the Bitcode serializer to emit APInts to Bitcode.
262 void Emit(Serializer& S) const;

Completed in 2396 milliseconds

1 2 3