/external/v8/src/full-codegen/mips64/ |
full-codegen-mips64.cc | 223 Variable* var = (i == -1) ? scope()->receiver() : scope()->parameter(i); 254 Variable* this_function_var = scope()->this_function_var(); 264 Variable* new_target_var = scope()->new_target_var(); 272 Variable* rest_param = scope()->rest_parameter(&rest_index); 293 Variable* arguments = scope()->arguments(); 482 void FullCodeGenerator::StackValueContext::Plug(Variable* var) const { 706 MemOperand FullCodeGenerator::StackOperand(Variable* var) { 720 MemOperand FullCodeGenerator::VarOperand(Variable* var, Register scratch) { 732 void FullCodeGenerator::GetVar(Register dest, Variable* var) { 739 void FullCodeGenerator::SetVar(Variable* var 805 Variable* variable = proxy->var(); local 864 Variable* variable = proxy->var(); local [all...] |
/external/v8/src/full-codegen/ppc/ |
full-codegen-ppc.cc | 219 Variable* var = (i == -1) ? scope()->receiver() : scope()->parameter(i); 250 Variable* this_function_var = scope()->this_function_var(); 261 Variable* new_target_var = scope()->new_target_var(); 269 Variable* rest_param = scope()->rest_parameter(&rest_index); 290 Variable* arguments = scope()->arguments(); 474 void FullCodeGenerator::StackValueContext::Plug(Variable* var) const { 678 MemOperand FullCodeGenerator::StackOperand(Variable* var) { 692 MemOperand FullCodeGenerator::VarOperand(Variable* var, Register scratch) { 704 void FullCodeGenerator::GetVar(Register dest, Variable* var) { 711 void FullCodeGenerator::SetVar(Variable* var, Register src, Register scratch0 771 Variable* variable = proxy->var(); local 829 Variable* variable = proxy->var(); local [all...] |
/external/clang/lib/Analysis/ |
ThreadSafetyCommon.cpp | 61 // Return true if E is a variable that points to an incomplete Phi node. 295 assert(SelfVar && "We have no variable for 'this'!"); 300 if (auto *V = dyn_cast<til::Variable>(E)) 594 // Add local variables with trivial type to the variable map 608 // update the statement map so that S refers to E. Returns a new variable 616 E = new (Arena) til::Variable(E, VD); 633 // if E is a til::Variable, update its clangDecl. 637 if (til::Variable *V = dyn_cast<til::Variable>(E)) { 643 // Adds a new variable declaration [all...] |
/external/llvm/examples/Kaleidoscope/Chapter7/ |
toy.cpp | 142 /// VariableExprAST - Expression class for referencing a variable, like "a". 333 if (CurTok != '(') // Simple variable ref. 444 // At least one variable name is required. 716 // Look this variable up in the function. 719 return ErrorV("Unknown variable name"); 746 return ErrorV("destination of '=' must be a variable"); 753 Value *Variable = NamedValues[LHSE->getName()]; 754 if (!Variable) 755 return ErrorV("Unknown variable name"); 757 Builder.CreateStore(Val, Variable); [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
toy-jit.cpp | 141 /// VariableExprAST - Expression class for referencing a variable, like "a". 292 if (CurTok != '(') // Simple variable ref. 412 // At least one variable name is required. 646 // Look this variable up in the function. 648 if (V == 0) return ErrorV("Unknown variable name"); 677 return ErrorV("destination of '=' must be a variable"); 683 Value *Variable = NamedValues[LHSE->getName()]; 684 if (Variable == 0) return ErrorV("Unknown variable name"); 686 Builder.CreateStore(Val, Variable); [all...] |
toy.cpp | 148 /// VariableExprAST - Expression class for referencing a variable, like "a". 299 if (CurTok != '(') // Simple variable ref. 419 // At least one variable name is required. 1017 // Look this variable up in the function. 1020 sprintf(ErrStr, "Unknown variable name %s", Name.c_str()); 1044 return ErrorV("destination of '=' must be a variable"); 1050 Value *Variable = NamedValues[LHSE->getName()]; 1051 if (Variable == 0) return ErrorV("Unknown variable name"); 1053 Builder.CreateStore(Val, Variable); [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
toy.cpp | 125 /// VariableExprAST - Expression class for referencing a variable, like "a". 276 if (CurTok != '(') // Simple variable ref. 396 // At least one variable name is required. 875 // Look this variable up in the function. 878 sprintf(ErrStr, "Unknown variable name %s", Name.c_str()); 902 return ErrorV("destination of '=' must be a variable"); 908 Value *Variable = NamedValues[LHSE->getName()]; 909 if (Variable == 0) return ErrorV("Unknown variable name"); 911 Builder.CreateStore(Val, Variable); [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
toy-jit.cpp | 126 /// VariableExprAST - Expression class for referencing a variable, like "a". 277 if (CurTok != '(') // Simple variable ref. 397 // At least one variable name is required. 631 // Look this variable up in the function. 633 if (V == 0) return ErrorV("Unknown variable name"); 659 return ErrorV("destination of '=' must be a variable"); 665 Value *Variable = NamedValues[LHSE->getName()]; 666 if (Variable == 0) return ErrorV("Unknown variable name"); 668 Builder.CreateStore(Val, Variable); [all...] |
toy.cpp | 127 /// VariableExprAST - Expression class for referencing a variable, like "a". 278 if (CurTok != '(') // Simple variable ref. 398 // At least one variable name is required. 915 // Look this variable up in the function. 918 sprintf(ErrStr, "Unknown variable name %s", Name.c_str()); 942 return ErrorV("destination of '=' must be a variable"); 948 Value *Variable = NamedValues[LHSE->getName()]; 949 if (Variable == 0) return ErrorV("Unknown variable name"); 951 Builder.CreateStore(Val, Variable); [all...] |
/external/llvm/lib/IR/ |
DebugInfoMetadata.cpp | 444 Metadata *Variable, 451 Line, Type, IsLocalToUnit, IsDefinition, Variable, 454 Name, LinkageName, Variable, StaticDataMemberDeclaration};
|
/external/clang/lib/CodeGen/ |
CGDecl.cpp | 129 /// EmitVarDecl - This method handles emission of any variable declaration 136 // FIXME: We need to force the emission/use of a guard variable for 189 // Use the label if the variable is renamed with the asm-label extension. 271 /// non-trivial. If so, and the variable uses static initialization, we must 279 /// global variable that has already been created for it. If the initializer 293 // Since we have a static initializer, this global variable can't 345 // Check to see if we already have a global variable for this 394 // Emit global variable debug descriptor for static vars. 474 // Compute the address of the local variable, in case it's a 496 // Compute the address of the local variable, in case it's a byre [all...] |
/external/v8/src/full-codegen/ |
full-codegen.cc | 254 void FullCodeGenerator::EffectContext::Plug(Variable* var) const { 259 void FullCodeGenerator::AccumulatorValueContext::Plug(Variable* var) const { 265 void FullCodeGenerator::TestContext::Plug(Variable* var) const { 399 Variable* variable = proxy->var(); local 400 switch (variable->location()) { 408 EmitDebugCheckDeclarationContext(variable); [all...] |
/external/v8/src/crankshaft/ |
hydrogen.h | 560 void Bind(Variable* variable, HValue* value) { 561 Bind(IndexFor(variable), value); 570 HValue* Lookup(Variable* variable) const { 571 return Lookup(IndexFor(variable)); 651 // Map a variable to an environment index. Parameter indices are shifted 654 int IndexFor(Variable* variable) const { 655 DCHECK(variable->IsStackAllocated()) [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/ |
Tkinter.py | 198 class Variable: 205 """Construct a variable 211 If NAME matches an existing variable and VALUE is omitted 229 """Unset the variable in Tcl.""" 232 """Return the name of the variable in Tcl.""" 235 """Set the variable to VALUE.""" 238 """Return value of variable.""" 241 """Define a trace callback for the variable. 245 the variable is read, written or undefined. 250 self._tk.call("trace", "variable", self._name, mode, cbname [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/ |
Tkinter.py | 198 class Variable: 205 """Construct a variable 211 If NAME matches an existing variable and VALUE is omitted 229 """Unset the variable in Tcl.""" 232 """Return the name of the variable in Tcl.""" 235 """Set the variable to VALUE.""" 238 """Return value of variable.""" 241 """Define a trace callback for the variable. 245 the variable is read, written or undefined. 250 self._tk.call("trace", "variable", self._name, mode, cbname [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
Tkinter.py | 198 class Variable: 205 """Construct a variable 211 If NAME matches an existing variable and VALUE is omitted 229 """Unset the variable in Tcl.""" 232 """Return the name of the variable in Tcl.""" 235 """Set the variable to VALUE.""" 238 """Return value of variable.""" 241 """Define a trace callback for the variable. 245 the variable is read, written or undefined. 250 self._tk.call("trace", "variable", self._name, mode, cbname [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
Tkinter.py | 198 class Variable: 205 """Construct a variable 211 If NAME matches an existing variable and VALUE is omitted 229 """Unset the variable in Tcl.""" 232 """Return the name of the variable in Tcl.""" 235 """Set the variable to VALUE.""" 238 """Return value of variable.""" 241 """Define a trace callback for the variable. 245 the variable is read, written or undefined. 250 self._tk.call("trace", "variable", self._name, mode, cbname [all...] |
/external/llvm/examples/Kaleidoscope/Chapter8/ |
toy.cpp | 226 /// VariableExprAST - Expression class for referencing a variable, like "a". 472 if (CurTok != '(') // Simple variable ref. 585 // At least one variable name is required. 899 // Look this variable up in the function. 902 return ErrorV("Unknown variable name"); 933 return ErrorV("destination of '=' must be a variable"); 940 Value *Variable = NamedValues[LHSE->getName()]; 941 if (!Variable) 942 return ErrorV("Unknown variable name"); 944 Builder.CreateStore(Val, Variable); [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
toy.cpp | 167 /// VariableExprAST - Expression class for referencing a variable, like "a". 318 if (CurTok != '(') // Simple variable ref. 438 // At least one variable name is required. 1089 // Look this variable up in the function. 1091 if (V == 0) return ErrorV("Unknown variable name"); 1118 return ErrorV("destination of '=' must be a variable"); [all...] |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
codegen.ml | 23 | Ast.Variable name -> 25 | Not_found -> raise (Error "unknown variable name") 45 | Ast.Variable name -> name 46 | _ -> raise (Error "destination of '=' must be a variable") 53 let variable = try Hashtbl.find named_values name with 54 | Not_found -> raise (Error "unknown variable name") 56 ignore(build_store val_ variable builder); 170 (* Create an alloca for the variable in the entry block. *) 173 (* Emit the start code first, without 'variable' in scope. *) 190 (* Within the loop, the variable is defined equal to the PHI node. If i [all...] |
/external/v8/src/ast/ |
prettyprinter.cc | 279 // Variable names of builtins are meaningless due to minification. 318 // Bail out if the error is caused by a direct call to a variable in builtin 319 // code. The variable name is meaningless due to minification. 336 // Bail out if the error is caused by a direct call to a variable in builtin 337 // code. The variable name is meaningless due to minification. 694 PrintLiteral(node->variable()->name(), quote); 1165 Variable* var, 1172 Variable::Mode2String(var->mode())); 1251 PrintLiteralWithModeIndented(Variable::Mode2String(node->mode()), [all...] |
/external/v8/src/debug/ |
liveedit.cc | 765 ZoneList<Variable*> stack_list(current_scope->StackLocalCount(), zone); 766 ZoneList<Variable*> context_list( 768 ZoneList<Variable*> globals_list(current_scope->ContextGlobalCount(), 772 context_list.Sort(&Variable::CompareIndex); [all...] |
/external/deqp/modules/gles31/functional/ |
es31fTessellationTests.cpp | [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAGBuilder.cpp | [all...] |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
codegen.ml | 17 | Ast.Variable name -> 19 | Not_found -> raise (Error "unknown variable name")) 100 (* Emit the start code first, without 'variable' in scope. *) 117 let variable = build_phi [(start_val, preheader_bb)] var_name builder in var 119 (* Within the loop, the variable is defined equal to the PHI node. If it 120 * shadows an existing variable, we have to restore it, so save it 125 Hashtbl.add named_values var_name variable; 140 let next_var = build_add variable step_val "nextvar" builder in 160 add_incoming (next_var, loop_end_bb) variable; 162 (* Restore the unshadowed variable. * [all...] |